sutty/config/routes.rb

34 lines
1 KiB
Ruby
Raw Normal View History

2018-01-02 17:19:25 +00:00
Rails.application.routes.draw do
2018-01-29 18:09:30 +00:00
root 'application#index'
get 'login/new', to: 'login#new'
post 'login', to: 'login#create'
2018-02-26 22:08:21 +00:00
delete 'login/logout', to: 'login#delete'
2018-02-25 01:10:37 +00:00
get 'markdown', to: 'application#markdown'
2018-01-29 18:09:30 +00:00
2018-07-02 22:07:06 +00:00
# XXX Mantenemos solo esta ruta acá porque form_for no reconoce @site
# como un objeto válido
resources :invitadxs, only: [:create]
2018-09-28 14:34:37 +00:00
2018-09-27 18:17:10 +00:00
resources :sites, only: [:index, :show], constraints: { site_id: /[^\/]+/, id: /[^\/]+/ } do
2018-10-02 18:47:26 +00:00
get 'public/:type/:basename', to: 'sites#send_public_file'
2018-01-29 18:09:30 +00:00
resources :posts
resources :templates
resources :invitadxs, only: [:index, :new, :show] do
2018-09-28 14:34:37 +00:00
get :confirmation, to: 'invitadxs#confirmation'
end
get :'invitadxs/login/new', to: 'login#new'
post :'invitadxs/login', to: 'login#create'
2018-02-09 21:28:27 +00:00
get 'i18n', to: 'i18n#index'
get 'i18n/edit', to: 'i18n#edit'
post 'i18n', to: 'i18n#update'
2018-02-20 17:47:11 +00:00
post 'enqueue', to: 'sites#enqueue'
get 'build_log', to: 'sites#build_log'
2018-04-27 20:24:28 +00:00
post 'reorder_posts', to: 'sites#reorder_posts'
2018-01-29 18:09:30 +00:00
end
2018-01-02 17:19:25 +00:00
end