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
2017-08-15Enable Layout/TrailingWhitespace cop and auto-correct offensesRobert Speicher
2017-05-19Refactor to more robust implementationMichael Kozono
In order to avoid string manipulation or modify route params (to make them unambiguous for `url_for`), we are accepting a behavior change: When being redirected to the canonical path for a group, if you requested a group show path starting with `/groups/…` then you’ll now be redirected to the group at root `/…`.
2017-05-05Resolve discussionsMichael Kozono
2017-05-05Dry up routable lookups. Fixes #30317Michael Kozono
Note: This changes the behavior of user lookups (see the spec change) so it acts the same way as groups and projects. Unauthenticated clients attempting to access a user page will be redirected to login whether the user exists and is publicly restricted, or does not exist at all.
2017-05-05Redirect from redirect routes to canonical routesMichael Kozono
2017-04-06ProjectsFinder should handle more optionsJacopo
Extended ProjectFinder in order to handle the following options: - current_user - which user use - project_ids_relation: int[] - project ids to use - params: - trending: boolean - non_public: boolean - starred: boolean - sort: string - visibility_level: int - tags: string[] - personal: boolean - search: string - non_archived: boolean GroupProjectsFinder now inherits from ProjectsFinder. Changed the code in order to use the new available options.
2017-04-05MR empty stateLuke "Jared" Bennett
2016-12-08Add nested groups support on data levelDmitriy Zaporozhets
* add parent_id field to namespaces table to store relation with nested groups * create routes table to keep information about full path of every group and project * project/group lookup by full path from routes table Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-20Tweaks, refactoring, and specsDouwe Maan
2016-03-18Improve group visibility level featureZeger-Jan van de Weg
2015-11-16Refactor global and group milestones logicDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-07-31Use before_actionsDouwe Maan
2015-05-01Add helpers for header title and sidebar, and move setting those from ↵Douwe Maan
controllers to layouts.
2015-04-30Add a page title to every page.Douwe Maan
2015-04-14Rename manage_group ability to admin_group for consistency with project.Douwe Maan
2015-03-15Move group members index from `/members` to `/group_members`.Douwe Maan
2015-03-12group controller refactoringValery Sizov