Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-17Fix the user-agent detail API endpoint for project snippetsNick Thomas
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉
2017-08-31API: Use defined project requirementsRobert Schilling
2017-08-28Conditionally destroy a ressourceRobert Schilling
2017-08-28API: Respect the 'If-Unmodified-Since' for delete endpointsRobert Schilling
2017-07-20Update grape gemDmitriy Zaporozhets
New version of the gem returns 200 status code on delete with content instead of 204 so we explicitly set status code to keep existing behavior Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-07-07add spec and project snippet user agent details endpointJames Lopez
2017-05-31Support descriptions for snippetsJarka Kadlecova
2017-05-10Merge branch 'snippets-finder-visibility' into 'security'Douwe Maan
Refactor snippets finder & dont return internal snippets for external users See merge request !2094
2017-03-16Add `requirements: { id: %r{[^/]+} }` for all projects and groups namespaced ↵Rémy Coutable
API routes Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-02Use string based `visibility` getter & setterToon Claes
Add `visibility` & `visibility=` methods to the `Gitlab::VisibilityLevel` module so the `visibility_level` can be get/set with a string value.
2017-03-02Expose Project's & ProjectSnippet's VisibilityLevel as StringToon Claes
Instead of exposing the VisibilityLevel as Integer, expose it as String `visibility` for Project and ProjectSnippet. Filter queries also accept the `visibility` as String instead of `visibility_level` as Integer. Also remove the `public` boolean.
2017-02-21Spam check and reCAPTCHA improvementsOswaldo Ferreira
2017-02-02Check public snippets for spamSean McGivern
Apply the same spam checks to public snippets (either personal snippets that are public, or public snippets on public projects) as to issues on public projects.
2016-12-04Use the pagination helper in the APIRobert Schilling
2016-11-21Grapify the projects snippet APIRobert Schilling
2016-04-25Prevent private snippets in public/internal projects from being leaked via APIStan Hu
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15580
2015-06-26Rename abilities to correspond contoller/model action namesDmitriy Zaporozhets
write_ was renamed to create_ modify_ was renamed to update_ So now in update action we have next code def create can?(current_user, :create_issue, @issue) end def update can?(current_user, :update_issue, @issue) end Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-03-11More restricted visibility changesVinnie Okada
Bug fixes and new tests for the restricted visibility changes.
2015-03-09Enforce restricted visibilities for snippetsVinnie Okada
Add new service classes to create and update project and personal snippets. These classes are responsible for enforcing restricted visibility settings for non-admin users.
2014-09-16Improve error reporting on users APIjubianchi
* users (#6878, #3526, #4209): Validation error messages are now exposed through 400 responses, 409 response are sent in case of duplicate email or username * MRs (#5335): 409 responses are sent in case of duplicate merge request (source/target branches), 422 responses are sent when submiting MR fo/from unrelated forks * issues * labels * projects
2014-01-11Dropped expiration date from the snippet APIJeroen van Baarsen
2013-06-06Fix snippet raw content being escapedDmitriy Zaporozhets
2013-06-06Split Project api on several parts: deploy_keys, hooks, snippets etcDmitriy Zaporozhets