Sha256: c0560cfe7e220fb3a1e2a3d837a4f58dd2c2b1115be197ce92241868885a9071

Contents?: true

Size: 389 Bytes

Versions: 7

Compression:

Stored size: 389 Bytes

Contents

Rails.application.routes.draw do
  
  namespace :bhf, path: Bhf::Engine.config.mount_at do
    root to: 'application#index'
    
    get 'page/:page', to: 'pages#show', as: :page
    
    scope ':platform' do
      resources :entries, except: [:index] do
        resources :embed_entries, except: [:index, :show], as: :embed
        put :sort, on: :collection
      end
    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
bhf-0.4.20 config/routes.rb
bhf-0.4.19 config/routes.rb
bhf-0.4.18 config/routes.rb
bhf-0.4.17 config/routes.rb
bhf-0.4.16 config/routes.rb
bhf-0.4.15 config/routes.rb
bhf-0.4.14 config/routes.rb