Sha256: 526f718405a0f3b532ecfd4af2ac8ae7022ac684469e58545d0c9741c02b55ac

Contents?: true

Size: 396 Bytes

Versions: 15

Compression:

Stored size: 396 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, :show] do
        resources :embed_entries, except: [:index, :show], as: :embed
        put :sort, on: :collection
      end
    end

  end

end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
bhf-0.4.13 config/routes.rb
bhf-0.4.12 config/routes.rb
bhf-0.4.11 config/routes.rb
bhf-0.4.10 config/routes.rb
bhf-0.4.9 config/routes.rb
bhf-0.4.8 config/routes.rb
bhf-0.4.7 config/routes.rb
bhf-0.4.6 config/routes.rb
bhf-0.4.5 config/routes.rb
bhf-0.4.4 config/routes.rb
bhf-0.4.3 config/routes.rb
bhf-0.4.2.7 config/routes.rb
bhf-0.4.2.5 config/routes.rb
bhf-0.4.2.4 config/routes.rb
bhf-0.4.2.3 config/routes.rb