mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
16 lines
257 B
Ruby
16 lines
257 B
Ruby
Rails.application.routes.draw do
|
|
root to: 'static_pages#home'
|
|
|
|
namespace :admin do
|
|
root to: 'boards#index'
|
|
|
|
resources :boards
|
|
resources :post_statuses
|
|
resources :users
|
|
end
|
|
|
|
devise_for :users
|
|
|
|
resources :boards, only: [:show]
|
|
end
|