-
- Downloads
There was a problem fetching the pipeline summary.
Merge branch 'dz-allow-nested-group-routing' into 'master'
Add nested groups support to the routing ## What does this MR do? It allows routing with `/` in namespace name ## Why was this MR needed? For nested groups feature(https://gitlab.com/gitlab-org/gitlab-ce/issues/2772). We need URI like `/group/subgroup/project` be routed correctly ## Does this MR meet the acceptance criteria? - [x] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) added - ~~[Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)~~ - ~~API support added~~ - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? https://gitlab.com/gitlab-org/gitlab-ce/issues/2772 See merge request !7459
No related branches found
No related tags found
Pipeline #
Showing
- app/controllers/application_controller.rb 8 additions, 0 deletionsapp/controllers/application_controller.rb
- app/models/project.rb 1 addition, 0 deletionsapp/models/project.rb
- app/models/user.rb 5 additions, 1 deletionapp/models/user.rb
- app/validators/namespace_validator.rb 15 additions, 7 deletionsapp/validators/namespace_validator.rb
- app/validators/project_path_validator.rb 36 additions, 0 deletionsapp/validators/project_path_validator.rb
- app/views/projects/wikis/_nav.html.haml 1 addition, 1 deletionapp/views/projects/wikis/_nav.html.haml
- changelogs/unreleased/dz-allow-nested-group-routing.yml 4 additions, 0 deletionschangelogs/unreleased/dz-allow-nested-group-routing.yml
- config/routes.rb 16 additions, 4 deletionsconfig/routes.rb
- config/routes/git_http.rb 39 additions, 29 deletionsconfig/routes/git_http.rb
- config/routes/group.rb 3 additions, 17 deletionsconfig/routes/group.rb
- config/routes/project.rb 34 additions, 24 deletionsconfig/routes/project.rb
- config/routes/repository.rb 50 additions, 72 deletionsconfig/routes/repository.rb
- config/routes/user.rb 3 additions, 0 deletionsconfig/routes/user.rb
- config/routes/wiki.rb 15 additions, 12 deletionsconfig/routes/wiki.rb
- features/steps/project/labels.rb 0 additions, 2 deletionsfeatures/steps/project/labels.rb
- features/steps/shared/diff_note.rb 5 additions, 0 deletionsfeatures/steps/shared/diff_note.rb
- features/steps/shared/note.rb 4 additions, 0 deletionsfeatures/steps/shared/note.rb
- lib/constraints/constrainer_helper.rb 0 additions, 15 deletionslib/constraints/constrainer_helper.rb
- lib/constraints/group_url_constrainer.rb 11 additions, 9 deletionslib/constraints/group_url_constrainer.rb
- lib/constraints/project_url_constrainer.rb 13 additions, 0 deletionslib/constraints/project_url_constrainer.rb
app/validators/project_path_validator.rb
0 → 100644
lib/constraints/project_url_constrainer.rb
0 → 100644
Please register or sign in to comment