Add Boards

This commit is contained in:
riggraz
2019-08-22 17:09:13 +02:00
parent ecc0d1cb27
commit 33ba4771d7
16 changed files with 193 additions and 4 deletions

View File

@@ -2,9 +2,13 @@ Rails.application.routes.draw do
root to: 'static_pages#home'
namespace :admin do
root to: "users#index"
root to: "boards#index"
resources :boards
resources :users
end
devise_for :users
resources :boards, only: [:show]
end