diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-01-19 10:48:53 -0600 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-03-06 09:47:43 -0600 |
commit | c51d72036698c6d53602c58f09d5ddd3ed8d225b (patch) | |
tree | ebb062dd05c03f132156d998874f604219465d37 /config/routes | |
parent | 30cea142ab0263dcd572ac9cdc528b781c283437 (diff) | |
download | gitlab-ce-c51d72036698c6d53602c58f09d5ddd3ed8d225b.tar.gz |
Added repository controller and route for the settings namespace
Diffstat (limited to 'config/routes')
-rw-r--r-- | config/routes/project.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb index 7dc7963ab88..c56c5e14384 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -325,6 +325,7 @@ constraints(ProjectUrlConstrainer.new) do resource :members, only: [:show] resource :ci_cd, only: [:show], controller: 'ci_cd' resource :integrations, only: [:show] + resource :repository, only: [:show], controller: :repository end # Since both wiki and repository routing contains wildcard characters |