Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
c51d7203
Commit
c51d7203
authored
Jan 19, 2017
by
Jose Ivan Vargas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added repository controller and route for the settings namespace
parent
30cea142
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
app/controllers/projects/settings/repository_controller.rb
app/controllers/projects/settings/repository_controller.rb
+9
-0
app/views/projects/settings/repository/show.html.haml
app/views/projects/settings/repository/show.html.haml
+2
-0
config/routes/project.rb
config/routes/project.rb
+1
-0
No files found.
app/controllers/projects/settings/repository_controller.rb
0 → 100644
View file @
c51d7203
module
Projects
module
Settings
class
RepositoryController
<
Projects
::
ApplicationController
def
show
end
end
end
end
app/views/projects/settings/repository/show.html.haml
0 → 100644
View file @
c51d7203
%h1
Hello World
config/routes/project.rb
View file @
c51d7203
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment