about summary refs log tree commit diff stats
path: root/config/routes.rb
blob: 449cda1eeb7a22262f6f647db1f29700bf84c57a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Rails.application.routes.draw do
  namespace :admin do
    get '/', to: 'dashboard#index'

    resources :blogs, except: [:show]
  end

  mount Ckeditor::Engine => '/ckeditor'
  devise_for :users, controllers: { sessions: 'users/sessions' }

  root "records#index"

  get 'says/:slug', to: 'entries#show'
end