Sha256: ec2b931dbe0fa83a3574e6d57b278ca917ac22481ce79e0ebd5f5f065ceabeba
Contents?: true
Size: 620 Bytes
Versions: 6
Compression:
Stored size: 620 Bytes
Contents
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] 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 def sweep_cache PageCache.sweep_all end end
Version data entries
6 entries across 6 versions & 1 rubygems