Sha256: 493894236a7e7856f7b8dca84b5b70ecc20bb8de7094121e3e187a5233862236

Contents?: true

Size: 443 Bytes

Versions: 20

Compression:

Stored size: 443 Bytes

Contents

module AdminData
  class MigrationController < ApplicationController

    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
end

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
the_jobbook_admin_data-1.3.0a app/controllers/admin_data/migration_controller.rb
admin_data-1.2.1 app/controllers/admin_data/migration_controller.rb
admin_data-1.2.0 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.16 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.15 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.14 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.13 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.12 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.11 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.10 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.9 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.8 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.7 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.6 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.5 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.4 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.3 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.2 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.1 app/controllers/admin_data/migration_controller.rb
admin_data-1.1.0 app/controllers/admin_data/migration_controller.rb