summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLong Nguyen <long.polyglot@gmail.com>2016-05-08 20:48:07 +0700
committerLong Nguyen <long.polyglot@gmail.com>2016-05-08 20:48:07 +0700
commit29089352e388882a799daff7623fc7213f60e1c9 (patch)
tree47e88f0101fb89913b9d31b72fa79de9a6f2ee17
parent3d4627047ae7e9947fc3924c2615fb2865f2383b (diff)
downloadgitlab-ce-29089352e388882a799daff7623fc7213f60e1c9.tar.gz
Routing refactoring
-rw-r--r--app/views/search/results/_snippet_blob.html.haml2
-rw-r--r--app/views/search/results/_snippet_title.html.haml2
-rw-r--r--app/views/shared/snippets/_snippet.html.haml2
-rw-r--r--app/views/users/calendar.html.haml2
-rw-r--r--app/views/users/show.html.haml12
-rw-r--r--config/routes.rb23
6 files changed, 20 insertions, 23 deletions
diff --git a/app/views/search/results/_snippet_blob.html.haml b/app/views/search/results/_snippet_blob.html.haml
index 6b7e06f2b21..c9b7bd154af 100644
--- a/app/views/search/results/_snippet_blob.html.haml
+++ b/app/views/search/results/_snippet_blob.html.haml
@@ -6,7 +6,7 @@
%span
= snippet.title
by
- = link_to snippets_user_path(snippet.author) do
+ = link_to user_snippets_path(snippet.author) do
= image_tag avatar_icon(snippet.author_email), class: "avatar avatar-inline s16", alt: ''
= snippet.author_name
%span.light #{time_ago_with_tooltip(snippet.created_at)}
diff --git a/app/views/search/results/_snippet_title.html.haml b/app/views/search/results/_snippet_title.html.haml
index 8c884926db5..c414acb6a11 100644
--- a/app/views/search/results/_snippet_title.html.haml
+++ b/app/views/search/results/_snippet_title.html.haml
@@ -17,7 +17,7 @@
= "##{snippet_title.id}"
%span
by
- = link_to snippets_user_path(snippet_title.author) do
+ = link_to user_snippets_path(snippet_title.author) do
= image_tag avatar_icon(snippet_title.author_email), class: "avatar avatar-inline s16", alt: ''
= snippet_title.author_name
%span.light #{time_ago_with_tooltip(snippet_title.created_at)}
diff --git a/app/views/shared/snippets/_snippet.html.haml b/app/views/shared/snippets/_snippet.html.haml
index e6a7a7777b0..c96dfefe17f 100644
--- a/app/views/shared/snippets/_snippet.html.haml
+++ b/app/views/shared/snippets/_snippet.html.haml
@@ -16,6 +16,6 @@
= link_to snippet.project.name_with_namespace, namespace_project_path(snippet.project.namespace, snippet.project)
.snippet-info
- = link_to snippets_user_path(snippet.author) do
+ = link_to user_snippets_path(snippet.author) do
= snippet.author_name
authored #{time_ago_with_tooltip(snippet.created_at)}
diff --git a/app/views/users/calendar.html.haml b/app/views/users/calendar.html.haml
index 6ff4eb79b05..1de71f37d1a 100644
--- a/app/views/users/calendar.html.haml
+++ b/app/views/users/calendar.html.haml
@@ -4,7 +4,7 @@
#{@timestamps.to_json},
#{@starting_year},
#{@starting_month},
- '#{calendar_activities_user_path}'
+ '#{user_calendar_activities_path}'
);
.calendar-hint Summary of issues, merge requests, and push events
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml
index d5f482f7168..9017fd54fcc 100644
--- a/app/views/users/show.html.haml
+++ b/app/views/users/show.html.haml
@@ -70,19 +70,19 @@
%ul.nav-links.center.user-profile-nav
%li.js-activity-tab
- = link_to calendar_activities_user_path, data: {target: 'div#activity', action: 'activity', toggle: 'tab'} do
+ = link_to user_calendar_activities_path, data: {target: 'div#activity', action: 'activity', toggle: 'tab'} do
Activity
%li.js-groups-tab
- = link_to groups_user_path, data: {target: 'div#groups', action: 'groups', toggle: 'tab'} do
+ = link_to user_groups_path, data: {target: 'div#groups', action: 'groups', toggle: 'tab'} do
Groups
%li.js-contributed-tab
- = link_to contributed_projects_user_path, data: {target: 'div#contributed', action: 'contributed', toggle: 'tab'} do
+ = link_to user_contributed_projects_path, data: {target: 'div#contributed', action: 'contributed', toggle: 'tab'} do
Contributed projects
%li.projects-tab
- = link_to projects_user_path, data: {target: 'div#projects', action: 'projects', toggle: 'tab'} do
+ = link_to user_projects_path, data: {target: 'div#projects', action: 'projects', toggle: 'tab'} do
Personal projects
%li.snippets-tab
- = link_to snippets_user_path, data: {target: 'div#snippets', action: 'snippets', toggle: 'tab'} do
+ = link_to user_snippets_path, data: {target: 'div#snippets', action: 'snippets', toggle: 'tab'} do
Snippets
%div{ class: container_class }
@@ -90,7 +90,7 @@
#activity.tab-pane
.row-content-block.calender-block.white.second-block.hidden-xs
%div{ class: container_class }
- .user-calendar{data: {href: calendar_user_path}}
+ .user-calendar{data: {href: user_calendar_path}}
%h4.center.light
%i.fa.fa-spinner.fa-spin
.user-calendar-activities
diff --git a/config/routes.rb b/config/routes.rb
index 299b0dd1acf..594bab204fd 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -343,19 +343,16 @@ Rails.application.routes.draw do
end
end
- resources(:users,
- path: 'u',
- param: :username,
- constraints: { username: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ },
- only: :show) do
- member do
- get :calendar, as: :calendar
- get :calendar_activities, as: :calendar_activities
- get :groups, as: :groups
- get :projects, as: :projects
- get :contributed, as: :contributed_projects
- get :snippets, as: :snippets
- end
+ scope(path: 'u/:username',
+ 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
end
#