mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
11 lines
168 B
Ruby
11 lines
168 B
Ruby
Rails.application.routes.draw do
|
|
root to: 'static_pages#home'
|
|
|
|
namespace :admin do
|
|
root to: "users#index"
|
|
resources :users
|
|
end
|
|
|
|
devise_for :users
|
|
end
|