Sha256: c8a191e5f24c740839e872d55fe6d171fabff056507dea4afc1d4dad70b1c6c9

Contents?: true

Size: 386 Bytes

Versions: 21

Compression:

Stored size: 386 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
        collection do 
          # TODO: put it
          get :sort
        end
      end
    end

  end

end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
bhf-0.3.10 config/routes.rb
bhf-0.3.9 config/routes.rb
bhf-0.3.8 config/routes.rb
bhf-0.3.7 config/routes.rb
bhf-0.3.6.4 config/routes.rb
bhf-0.3.6.3 config/routes.rb
bhf-0.3.6.2 config/routes.rb
bhf-0.3.6.1 config/routes.rb
bhf-0.3.5 config/routes.rb
bhf-0.3.4 config/routes.rb
bhf-0.3.3 config/routes.rb
bhf-0.3.2 config/routes.rb
bhf-0.3.1 config/routes.rb
bhf-0.3.0 config/routes.rb
bhf-0.2.9 config/routes.rb
bhf-0.2.8 config/routes.rb
bhf-0.2.7 config/routes.rb
bhf-0.2.6 config/routes.rb
bhf-0.2.5 config/routes.rb
bhf-0.2.4 config/routes.rb