sutty/config/routes.rb

19 lines
445 B
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-25 01:10:37 +00:00
get 'markdown', to: 'application#markdown'
2018-01-29 18:09:30 +00:00
2018-02-20 17:47:11 +00:00
resources :sites, only: [ :index, :show ] do
2018-01-29 18:09:30 +00:00
resources :posts
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-01-29 18:09:30 +00:00
end
2018-01-02 17:19:25 +00:00
end