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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
d7eb7970
Commit
d7eb7970
authored
Sep 16, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.9 Hash syntax in routes.rb
Also cleans up some alignment and removes unnecessary "to: " arguments
parent
94f91146
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
51 deletions
+52
-51
config/routes.rb
config/routes.rb
+52
-51
No files found.
config/routes.rb
View file @
d7eb7970
...
...
@@ -23,14 +23,14 @@ Gitlab::Application.routes.draw do
#
# Help
#
get
'help'
=>
'help#index'
get
'help/permissions'
=>
'help#permissions'
get
'help/workflow'
=>
'help#workflow'
get
'help/api'
=>
'help#api'
get
'help/web_hooks'
=>
'help#web_hooks'
get
'help'
=>
'help#index'
get
'help/permissions'
=>
'help#permissions'
get
'help/workflow'
=>
'help#workflow'
get
'help/api'
=>
'help#api'
get
'help/web_hooks'
=>
'help#web_hooks'
get
'help/system_hooks'
=>
'help#system_hooks'
get
'help/markdown'
=>
'help#markdown'
get
'help/ssh'
=>
'help#ssh'
get
'help/markdown'
=>
'help#markdown'
get
'help/ssh'
=>
'help#ssh'
#
# Admin Area
...
...
@@ -43,19 +43,19 @@ Gitlab::Application.routes.draw do
put
:unblock
end
end
resources
:projects
,
:constraints
=>
{
:id
=>
/[^\/]+/
}
do
resources
:projects
,
constraints:
{
id:
/[^\/]+/
}
do
member
do
get
:team
put
:team_update
end
end
resources
:team_members
,
:only
=>
[
:edit
,
:update
,
:destroy
]
resources
:hooks
,
:only
=>
[
:index
,
:create
,
:destroy
]
do
resources
:team_members
,
only:
[
:edit
,
:update
,
:destroy
]
resources
:hooks
,
only:
[
:index
,
:create
,
:destroy
]
do
get
:test
end
resource
:logs
,
only:
[
:show
]
resource
:resque
,
:controller
=>
'resque'
,
only:
[
:show
]
root
:to
=>
"dashboard#index"
resource
:resque
,
controller:
'resque'
,
only:
[
:show
]
root
to:
"dashboard#index"
end
get
"errors/githost"
...
...
@@ -63,31 +63,32 @@ Gitlab::Application.routes.draw do
#
# Profile Area
#
get
"profile/account"
,
:to
=>
"profile#account"
get
"profile/history"
,
:to
=>
"profile#history"
put
"profile/password"
,
:to
=>
"profile#password_update"
get
"profile/token"
,
:to
=>
"profile#token"
put
"profile/reset_private_token"
,
:to
=>
"profile#reset_private_token"
get
"profile"
,
:to
=>
"profile#show"
get
"profile/design"
,
:to
=>
"profile#design"
put
"profile/update"
,
:to
=>
"profile#update"
get
"profile/account"
=>
"profile#account"
get
"profile/history"
=>
"profile#history"
put
"profile/password"
=>
"profile#password_update"
get
"profile/token"
=>
"profile#token"
put
"profile/reset_private_token"
=>
"profile#reset_private_token"
get
"profile"
=>
"profile#show"
get
"profile/design"
=>
"profile#design"
put
"profile/update"
=>
"profile#update"
resources
:keys
#
# Dashboard Area
#
get
"dashboard"
,
:to
=>
"dashboard#index"
get
"dashboard/issues"
,
:to
=>
"dashboard#issues"
get
"dashboard/merge_requests"
,
:to
=>
"dashboard#merge_requests"
get
"dashboard"
=>
"dashboard#index"
get
"dashboard/issues"
=>
"dashboard#issues"
get
"dashboard/merge_requests"
=>
"dashboard#merge_requests"
resources
:projects
,
:constraints
=>
{
:id
=>
/[^\/]+/
},
:only
=>
[
:new
,
:create
]
resources
:projects
,
constraints:
{
id:
/[^\/]+/
},
only:
[
:new
,
:create
]
devise_for
:users
,
:controllers
=>
{
:omniauth_callbacks
=>
:omniauth_callbacks
}
devise_for
:users
,
controllers:
{
omniauth_callbacks:
:omniauth_callbacks
}
#
# Project Area
#
resources
:projects
,
:constraints
=>
{
:id
=>
/[^\/]+/
},
:except
=>
[
:new
,
:create
,
:index
],
:path
=>
"/"
do
resources
:projects
,
constraints:
{
id:
/[^\/]+/
},
except:
[
:new
,
:create
,
:index
],
path:
"/"
do
member
do
get
"team"
get
"wall"
...
...
@@ -95,7 +96,7 @@ Gitlab::Application.routes.draw do
get
"files"
end
resources
:wikis
,
:only
=>
[
:show
,
:edit
,
:destroy
,
:create
]
do
resources
:wikis
,
only:
[
:show
,
:edit
,
:destroy
,
:create
]
do
collection
do
get
:pages
end
...
...
@@ -114,46 +115,45 @@ Gitlab::Application.routes.draw do
end
resources
:deploy_keys
resources
:protected_branches
,
:only
=>
[
:index
,
:create
,
:destroy
]
resources
:protected_branches
,
only:
[
:index
,
:create
,
:destroy
]
resources
:refs
,
:only
=>
[],
:path
=>
"/"
do
resources
:refs
,
only:
[],
path:
"/"
do
collection
do
get
"switch"
end
member
do
get
"tree"
,
:constraints
=>
{
:id
=>
/[a-zA-Z.\/0-9_\-]+/
}
get
"logs_tree"
,
:constraints
=>
{
:id
=>
/[a-zA-Z.\/0-9_\-]+/
}
get
"tree"
,
constraints:
{
id:
/[a-zA-Z.\/0-9_\-]+/
}
get
"logs_tree"
,
constraints:
{
id:
/[a-zA-Z.\/0-9_\-]+/
}
get
"blob"
,
:constraints
=>
{
:id
=>
/[a-zA-Z.0-9\/_\-]+/
,
:path
=>
/.*/
constraints:
{
id:
/[a-zA-Z.0-9\/_\-]+/
,
path:
/.*/
}
# tree viewer
get
"tree/:path"
=>
"refs#tree"
,
:as
=>
:tree_file
,
:constraints
=>
{
:id
=>
/[a-zA-Z.0-9\/_\-]+/
,
:path
=>
/.*/
as:
:tree_file
,
constraints:
{
id:
/[a-zA-Z.0-9\/_\-]+/
,
path:
/.*/
}
# tree viewer
get
"logs_tree/:path"
=>
"refs#logs_tree"
,
:as
=>
:logs_file
,
:constraints
=>
{
:id
=>
/[a-zA-Z.0-9\/_\-]+/
,
:path
=>
/.*/
as:
:logs_file
,
constraints:
{
id:
/[a-zA-Z.0-9\/_\-]+/
,
path:
/.*/
}
# blame
get
"blame/:path"
=>
"refs#blame"
,
:as
=>
:blame_file
,
:constraints
=>
{
:id
=>
/[a-zA-Z.0-9\/_\-]+/
,
:path
=>
/.*/
as:
:blame_file
,
constraints:
{
id:
/[a-zA-Z.0-9\/_\-]+/
,
path:
/.*/
}
end
end
...
...
@@ -178,7 +178,7 @@ Gitlab::Application.routes.draw do
end
end
resources
:hooks
,
:only
=>
[
:index
,
:create
,
:destroy
]
do
resources
:hooks
,
only:
[
:index
,
:create
,
:destroy
]
do
member
do
get
:test
end
...
...
@@ -194,7 +194,7 @@ Gitlab::Application.routes.draw do
end
resources
:team_members
resources
:milestones
resources
:labels
,
:only
=>
[
:index
]
resources
:labels
,
only:
[
:index
]
resources
:issues
do
collection
do
...
...
@@ -203,11 +203,12 @@ Gitlab::Application.routes.draw do
get
:search
end
end
resources
:notes
,
:only
=>
[
:index
,
:create
,
:destroy
]
do
resources
:notes
,
only:
[
:index
,
:create
,
:destroy
]
do
collection
do
post
:preview
end
end
end
root
:to
=>
"dashboard#index"
root
to:
"dashboard#index"
end
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