Sha256: 6b5b6e88bb8eb9fa5f68bfd82564460111e83579936fb1bcdf5353062f4cf926

Contents?: true

Size: 594 Bytes

Versions: 2

Compression:

Stored size: 594 Bytes

Contents

class Admin::BaseController < ActionController::Base

  render_inheritable

  include Typus::Authentication::const_get(Typus.authentication.to_s.classify)

  before_filter :set_models_constantized
  before_filter :reload_config_and_roles
  before_filter :authenticate
  before_filter :set_locale

  helper_method :admin_user

  def user_guide
  end

  protected

  def set_models_constantized
    Typus::Configuration.models_constantized!
  end

  def reload_config_and_roles
    Typus.reload! unless Rails.env.production?
  end

  def set_locale
    I18n.locale = admin_user.locale
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typus-3.0.8 app/controllers/admin/base_controller.rb
typus-3.0.7 app/controllers/admin/base_controller.rb