Commit c51d7203 authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Added repository controller and route for the settings namespace

parent 30cea142
module Projects
module Settings
class RepositoryController < Projects::ApplicationController
def show
end
end
end
end
...@@ -325,6 +325,7 @@ constraints(ProjectUrlConstrainer.new) do ...@@ -325,6 +325,7 @@ constraints(ProjectUrlConstrainer.new) do
resource :members, only: [:show] resource :members, only: [:show]
resource :ci_cd, only: [:show], controller: 'ci_cd' resource :ci_cd, only: [:show], controller: 'ci_cd'
resource :integrations, only: [:show] resource :integrations, only: [:show]
resource :repository, only: [:show], controller: :repository
end end
# Since both wiki and repository routing contains wildcard characters # Since both wiki and repository routing contains wildcard characters
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment