summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLong Nguyen <long.polyglot@gmail.com>2016-05-10 09:56:12 +0700
committerLong Nguyen <long.polyglot@gmail.com>2016-05-10 09:56:12 +0700
commitdd1ad6bf3e5a378eb8698e95b73e58f935eb0956 (patch)
treec3b8ffc747eb9a24d97721331ede86ff8ce1e7b3 /config
parent6781c1b4ba8bb1a7da0a4bf637d7a311abf281f0 (diff)
downloadgitlab-ce-dd1ad6bf3e5a378eb8698e95b73e58f935eb0956.tar.gz
Code improve
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb15
1 files changed, 8 insertions, 7 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 594bab204fd..881de37f10e 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -344,15 +344,16 @@ Rails.application.routes.draw do
end
scope(path: 'u/:username',
+ as: :user,
constraints: { username: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ },
controller: :users) do
- get :calendar, action: :calendar, as: :user_calendar
- get :calendar_activities, action: :calendar_activities, as: :user_calendar_activities
- get :groups, action: :groups, as: :user_groups
- get :projects, action: :projects, as: :user_projects
- get :contributed, action: :contributed, as: :user_contributed_projects
- get :snippets, action: :snippets, as: :user_snippets
- get '/', action: :show, as: :user
+ get :calendar
+ get :calendar_activities
+ get :groups
+ get :projects
+ get :contributed, as: :contributed_projects
+ get :snippets
+ get '/', action: :show
end
#