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
2016-07-20Replace parse_boolean with to_booleanRobert Schilling
2016-07-12removes basicprojectwithaccess and replaces it with basicprojectdetailstiagonbotelho
2016-07-12changes the usage of simpleprojectdetails to already implemented ↵tiagonbotelho
basicprojectsdetails and changes the url to a more reader friendly format
2016-07-12adds basic functionality to the new endpoint of the apitiagonbotelho
2016-07-12changes string to symbol in paramtiagonbotelho
2016-07-12adds test to check json fields on simple request and changes the url request ↵tiagonbotelho
format
2016-07-12changes the usage of simpleprojectdetails to already implemented ↵tiagonbotelho
basicprojectsdetails and changes the url to a more reader friendly format
2016-07-12adds basic functionality to the new endpoint of the apitiagonbotelho
2016-07-12implements filter_paramstiagonbotelho
2016-07-01Enable Style/EmptyLines cop, remove redundant onesGrzegorz Bizon
2016-05-14Merge remote-tracking branch 'origin/master' into docker-registryKamil Trzcinski
# Conflicts: # config/initializers/1_settings.rb
2016-05-10Restrict starred projects to viewable onesSean McGivern
`User#starred_projects` doesn't perform any visibility checks. This has a couple of problems: 1. It assumes a user can always view all of their starred projects in perpetuity (project not changed to private, access revoked, etc.). 2. It assumes that we'll only ever allow a user to star a project they can view. This is currently the case, but bugs happen. Add `User#viewable_starred_projects` to filter the starred projects by those the user either has explicit access to, or are public or internal. Then use that in all places where we list the user's starred projects.
2016-05-09Rename `images` to `container_registry`Kamil Trzcinski
2016-04-29Make images_enabled configurableKamil Trzcinski
2016-04-13Styling changes to code and docsRobert Schilling
2016-04-13Make staring API more restfulRobert Schilling
2016-04-13API: Star and unstar a projectRobert Schilling
2016-03-24PUT becomes POST on archiving endpointsZeger-Jan van de Weg
Also the specs have a minor improvement. Mainly the access right spec. Changes are reflected in the docs
2016-03-24Add endpoints for archiving and unarchivingZeger-Jan van de Weg
2016-03-13Bring share project with group API from EEDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-02-04Rename allow_guest_to_access_builds to public_buildsKamil Trzcinski
2016-02-04Expose allow_guest_to_access_builds in GitLab APIKamil Trzcinski
2016-01-29First pass at deleting projects in the background.Josh Frye
2016-01-13Merge branch 'ci/api-projects' into 'master' Douwe Maan
Extend projects API with CI data Reference #4264 See merge request !2303
2016-01-11Modify CI features in projects APITomasz Maczukin
2016-01-07Add API project upload endpointDouwe Maan
2016-01-07Update ./doc/apiTomasz Maczukin
2016-01-05Add ci fields in project create/update feature APITomasz Maczukin
2016-01-04Fix API project lookups when querying with a namespace with dotsStan Hu
Attempting to use the /projects/:id API by specifying :id in "namespace/project" format would always result in a 404 if the namespace contained a dot. The reason? From http://guides.rubyonrails.org/routing.html#specifying-constraints: "By default the :id parameter doesn't accept dots - this is because the dot is used as a separator for formatted routes. If you need to use a dot within an :id add a constraint which overrides this - for example id: /[^\/]+/ allows anything except a slash." Closes https://github.com/gitlabhq/gitlabhq/issues/9573
2015-12-22Add project permissions to all project API endpointsStan Hu
This standardizes all the project API formats. Also needed to support Huboard.
2015-12-16Api support for requesting starred projects for userZeger-Jan van de Weg
Fixes #4112
2015-12-11Migrate CI::Project to ProjectKamil Trzcinski
2015-12-06Fix API setting of 'public' attribute to false will make a project privateStan Hu
Closes #3864
2015-11-13Expose CI enable option in project featuresKamil Trzcinski
- Enable CI by default for all new projects
2015-10-14Made suggested content changes based on MR ReviewHan Loong Liauw
Changed the authentication method for removing fork through API Reflected changes to new auth method in API specs
2015-10-13Adds ability to remove the forked relationshipHan Loong Liauw
This was previously possible through the API but can now be done through the project#edit settings screen if the current user is the owner of the project. Update changelog
2015-09-15fix specs. Stage 3Valery Sizov
2015-05-14Add order option for projects APIValery Sizov
2015-03-24Updated api method GET /projects/:id/events to use paginate instead of a ↵Stephan van Leeuwen
self-implementation Also updated example request url Added changelog item
2015-03-09Allow admins to override restricted visibilityVinnie Okada
Allow admins to use restricted visibility levels when creating or updating projects.
2015-02-06Refactor and improve sorting objects in API for projects, issues and merge ↵Dmitriy Zaporozhets
requests
2015-01-22Implement edit via API for projectsMika Mäenpää
2015-01-18Merge pull request #8307 from cirosantilli/project-api-comment-typoJeroen van Baarsen
Typo in project API events comment
2015-01-12Add search filter option on project api for authorized projects.Marin Jankovski
2014-12-30Forward the messages in api response.Marin Jankovski
2014-12-29Updated indentation on case when statements.Stephan van Leeuwen
2014-12-29Changed setting the sort variableStephan van Leeuwen
Changed from using cases to set the sort variable, to use a one line if/else statement
2014-12-29Updated projects api to allow orderingStephan van Leeuwen
Added support for order_by and sort parameters, to sort the projects by the specified values. Updated projects api documentation including the order_by and sort parameters
2014-11-14Typo in project API events commentCiro Santilli
2014-10-23Remove :keep_repo optionVinnie Okada
Always delete repositories from the filesystem when deleting a project.