Sha256: 8e23ef1db5a92c61cad363ff483fbc1ef403c291474b32ccadb070345a31cea7
Contents?: true
Size: 1011 Bytes
Versions: 4
Compression:
Stored size: 1011 Bytes
Contents
require 'haml' require 'kaminari' module Bhf class Engine < Rails::Engine # Config defaults config.page_title = nil config.mount_at = 'bhf' config.on_login_fail = :root_url config.logout_path = :logout_path config.session_auth_name = :is_admin config.session_account_id = :admin_account_id config.account_model = 'User' config.account_model_find_method = 'find' config.css = [] config.routes = lambda { 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 put :sort, on: :collection resources :embed_entries, except: [:index, :show], as: :embed post :duplicate, on: :member end end end } config.remove_default_routes = false # config.bhf_logic = YAML::load(IO.read('config/bhf.yml')) end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
bhf-0.4.30 | lib/engine.rb |
bhf-0.4.25 | lib/engine.rb |
bhf-0.4.24 | lib/engine.rb |
bhf-0.4.23 | lib/engine.rb |