Sha256: 4d868b145335fd21a6469dbed6a2295f7ca319be0e1be4255476f585706d995d

Contents?: true

Size: 427 Bytes

Versions: 18

Compression:

Stored size: 427 Bytes

Contents

class AdminData::MigrationController < AdminData::BaseController

  unloadable

  before_filter :ensure_is_allowed_to_view

  def index
    @page_title = 'migration information'
    @data = ActiveRecord::Base.connection.select_all('select * from schema_migrations')
    respond_to {|format| format.html}
  end

  def jstest
    @page_title = 'jstest'
    respond_to {|format| format.html { render :layout => false}}
  end

end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
admin_data-1.0.22 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.21 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.19 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.18 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.17 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.16 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.15 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.14 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.13 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.12 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.11 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.10 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.9 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.8 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.7 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.6 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.5 app/controllers/admin_data/migration_controller.rb
admin_data-1.0.4 app/controllers/admin_data/migration_controller.rb