2019-08-18 14:51:37 +02:00
|
|
|
Rails.application.routes.draw do
|
2019-08-26 14:29:56 +02:00
|
|
|
root to: 'static_pages#roadmap'
|
2019-08-28 18:54:25 +02:00
|
|
|
get '/roadmap', to: 'static_pages#roadmap'
|
2019-08-21 16:13:39 +02:00
|
|
|
|
|
|
|
|
namespace :admin do
|
2019-08-24 20:04:53 +02:00
|
|
|
root to: 'boards#index'
|
2019-08-22 17:09:13 +02:00
|
|
|
|
|
|
|
|
resources :boards
|
2019-08-24 12:28:59 +02:00
|
|
|
resources :post_statuses
|
2019-08-21 16:13:39 +02:00
|
|
|
resources :users
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-18 18:51:25 +02:00
|
|
|
devise_for :users
|
2019-08-22 17:09:13 +02:00
|
|
|
|
|
|
|
|
resources :boards, only: [:show]
|
2019-09-02 14:32:57 +02:00
|
|
|
|
|
|
|
|
post '/posts', to: 'posts#create'
|
2019-09-02 19:26:34 +02:00
|
|
|
get '/posts', to: 'posts#index_by_board_id'
|
2019-09-03 12:58:44 +02:00
|
|
|
get '/post_statuses', to: 'post_statuses#index'
|
2019-08-18 14:51:37 +02:00
|
|
|
end
|