about summary refs log tree commit diff stats
path: root/config/routes.rb
blob: 37e7f90b2c18b82f05091328f09bd94cda3f2895 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Rails.application.routes.draw do
  namespace :admin do
    get '/', to: 'dashboard#index'

    resources :blogs, except: [:show] do
      collection do
        get 'drafts'
      end
    end

    resources :streams, except: [:show] do
      resources :updates, except: [:index, :show]
    end
  end

  mount Ckeditor::Engine => '/ckeditor'

  devise_for :users, controllers: {
    sessions: 'users/sessions',
    passwords: 'users/passwords'
  }

  root "records#index"

  get 'says/:slug', to: 'blogs#show'

  get 'thinks/:slug', to: 'streams#show'

  mount Pokeviewer::Engine => '/poke3'
end