Skip to content

Instantly share code, notes, and snippets.

@lucasprag
Last active September 16, 2017 18:51
Show Gist options
  • Save lucasprag/64e5e49ca0bbe1b17bd5f992217b9270 to your computer and use it in GitHub Desktop.
Save lucasprag/64e5e49ca0bbe1b17bd5f992217b9270 to your computer and use it in GitHub Desktop.
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