Sha256: eb3f32fa18bdfa2d8688feccab368f7d89001b9f2050f5162b5f4a5427ebcc0b

Contents?: true

Size: 616 Bytes

Versions: 1

Compression:

Stored size: 616 Bytes

Contents

module Admin
end
class Admin::BaseController < ApplicationController
  cattr_accessor :look_for_migrations
  @@look_for_migrations = true
  layout 'administration'
  before_filter :login_required, :except => [ :login, :signup ]
  before_filter :look_for_needed_db_updates, :except => [:login, :signup, :update_database, :migrate]
  cache_sweeper :blog_sweeper

  private
  def look_for_needed_db_updates
    if Migrator.offer_migration_when_available
      redirect_to :controller => '/admin/settings', :action => 'update_database' if Migrator.current_schema_version != Migrator.max_schema_version
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
typo-5.1.3 app/controllers/admin/base_controller.rb