retrospring/config/routes.rb

49 lines
2.6 KiB
Ruby
Raw Normal View History

2014-08-01 11:23:47 +02:00
Rails.application.routes.draw do
2014-12-05 07:02:23 +01:00
2014-08-01 11:47:25 +02:00
root 'static#index'
2014-08-01 11:23:47 +02:00
2014-08-01 11:47:25 +02:00
match '/about', to: 'static#about', via: 'get'
2014-11-02 17:58:27 +01:00
# Devise routes
devise_for :users, path: 'user', skip: [:sessions, :registrations]
as :user do
# :sessions
get 'sign_in' => 'devise/sessions#new', as: :new_user_session
post 'sign_in' => 'devise/sessions#create', as: :user_session
delete 'sign_out' => 'devise/sessions#destroy', as: :destroy_user_session
# :registrations
get 'settings/delete_account' => 'devise/registrations#cancel', as: :cancel_user_registration
post '/user/create' => 'devise/registrations#create', as: :user_registration
get '/sign_up' => 'devise/registrations#new', as: :new_user_registration
get '/settings/account' => 'devise/registrations#edit', as: :edit_user_registration
2014-11-03 13:21:41 +01:00
patch '/settings/account' => 'devise/registrations#update', as: :update_user_registration
2014-11-02 17:58:27 +01:00
put '/settings/account' => 'devise/registrations#update'
delete '/settings/account' => 'devise/registrations#destroy'
end
match '/settings/profile', to: 'user#edit', via: 'get', as: :edit_user_profile
2014-11-03 13:21:41 +01:00
match '/settings/profile', to: 'user#update', via: 'patch', as: :update_user_profile
namespace :ajax do
match '/ask', to: 'question#create', via: :post, as: :ask
2014-11-11 16:19:20 +01:00
match '/answer', to: 'inbox#destroy', via: :post, as: :answer
match '/delete_inbox', to: 'inbox#remove', via: :post, as: :delete_inbox
2014-11-26 17:05:46 +01:00
match '/destroy_answer', to: 'answer#destroy', via: :post, as: :destroy_answer
2014-11-30 14:45:32 +01:00
match '/create_friend', to: 'friend#create', via: :post, as: :create_friend
match '/destroy_friend', to: 'friend#destroy', via: :post, as: :destroy_friend
2014-11-30 20:31:22 +01:00
match '/create_smile', to: 'smile#create', via: :post, as: :create_smile
match '/destroy_smile', to: 'smile#destroy', via: :post, as: :destroy_smile
2014-12-07 14:29:35 +01:00
match '/create_comment', to: 'comment#create', via: :post, as: :create_comment
end
2014-11-03 13:21:41 +01:00
2014-11-11 07:10:41 +01:00
match '/inbox', to: 'inbox#show', via: 'get'
2014-11-12 20:40:24 +01:00
match '/user/:username(/p/:page)', to: 'user#show', via: 'get', defaults: {page: 1}
match '/@:username(/p/:page)', to: 'user#show', via: 'get', as: :show_user_profile, defaults: {page: 1}
2014-12-05 07:02:23 +01:00
match '/@:username/a/:id', to: 'answer#show', via: 'get', as: :show_user_answer
2014-12-07 20:51:44 +01:00
match '/@:username/q/:id', to: 'question#show', via: 'get', as: :show_user_question
2014-11-12 20:40:24 +01:00
match '/:username(/p/:page)', to: 'user#show', via: 'get', as: :show_user_profile_alt, defaults: {page: 1}
2014-12-05 07:02:23 +01:00
match '/:username/a/:id', to: 'answer#show', via: 'get', as: :show_user_answer_alt
2014-12-07 20:51:44 +01:00
match '/:username/q/:id', to: 'question#show', via: 'get', as: :show_user_question_alt
2014-08-01 11:23:47 +02:00
end