modified show_user_profile routes, added ajax route

This commit is contained in:
nilsding 2014-11-10 13:04:10 +01:00
parent 8d46fe7843
commit f7f71e9cc9
2 changed files with 7 additions and 3 deletions

View file

@ -17,7 +17,7 @@
= current_user.screen_name
%b.caret
%ul.dropdown-menu
%li= link_to "View profile", show_user_profile_at_path(current_user.screen_name)
%li= link_to "View profile", show_user_profile_path(current_user.screen_name)
%li= link_to "Settings", edit_user_registration_path
%li.divider
%li= link_to "Logout", destroy_user_session_path, method: :delete

View file

@ -22,8 +22,12 @@ Rails.application.routes.draw do
match '/settings/profile', to: 'user#edit', via: 'get', as: :edit_user_profile
match '/settings/profile', to: 'user#update', via: 'patch', as: :update_user_profile
namespace :ajax do
match '/ask', to: 'ajax#ask', via: :post, as: :ajax_ask
end
match '/user/:username', to: 'user#show', via: 'get'
match '/@:username', to: 'user#show', via: 'get', as: :show_user_profile_at
match '/:username', to: 'user#show', via: 'get', as: :show_user_profile
match '/@:username', to: 'user#show', via: 'get', as: :show_user_profile
match '/:username', to: 'user#show', via: 'get', as: :show_user_profile_alt
end