Sha256: 4a06734aa1d7f28ac9900878fb7a5f86556b335e6dfeebd823821859df7d7756

Contents?: true

Size: 293 Bytes

Versions: 8

Compression:

Stored size: 293 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]
    end

  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bhf-0.2.0 config/routes.rb
bhf-0.1.6 config/routes.rb
bhf-0.1.5 config/routes.rb
bhf-0.1.4 config/routes.rb
bhf-0.1.3 config/routes.rb
bhf-0.1.2 config/routes.rb
bhf-0.1.1 config/routes.rb
bhf-0.1.0 config/routes.rb