Commit dd1ad6bf authored by Long Nguyen's avatar Long Nguyen

Code improve

parent 6781c1b4
- page_title "By #{@user.name}", "Snippets" - page_title "By #{@user.name}", "Snippets"
%ol.breadcrumb %ol.breadcrumb
%li %li
= link_to snippets_path do = link_to snippets_path do
Snippets Snippets
%li %li
= @user.name = @user.name
.pull-right.hidden-xs .pull-right.hidden-xs
= link_to user_path(@user) do = link_to user_path(@user) do
#{@user.name} profile page #{@user.name} profile page
= render 'snippets' = render 'snippets'
...@@ -344,15 +344,16 @@ Rails.application.routes.draw do ...@@ -344,15 +344,16 @@ Rails.application.routes.draw do
end end
scope(path: 'u/:username', scope(path: 'u/:username',
as: :user,
constraints: { username: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ }, constraints: { username: /[a-zA-Z.0-9_\-]+(?<!\.atom)/ },
controller: :users) do controller: :users) do
get :calendar, action: :calendar, as: :user_calendar get :calendar
get :calendar_activities, action: :calendar_activities, as: :user_calendar_activities get :calendar_activities
get :groups, action: :groups, as: :user_groups get :groups
get :projects, action: :projects, as: :user_projects get :projects
get :contributed, action: :contributed, as: :user_contributed_projects get :contributed, as: :contributed_projects
get :snippets, action: :snippets, as: :user_snippets get :snippets
get '/', action: :show, as: :user get '/', action: :show
end end
# #
......
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