Last active
September 16, 2017 18:51
-
-
Save lucasprag/64e5e49ca0bbe1b17bd5f992217b9270 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rails.application.routes.draw do | |
scope :admin do | |
resources :pages do | |
resources :sections | |
end | |
resources :posts | |
resources :categories | |
resource :settings | |
root 'admin#index', as: 'admin' | |
end | |
root 'blog#index' | |
get '/:slug' => 'blog#page' | |
get '/p/:slug' => 'blog#show' | |
get '/c/:slug' => 'blog#category' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment