Sha256: 397a4d801b78952de24dfd61506d0bfeaf03d051edff0357da330b2aa1beeb05

Contents?: true

Size: 375 Bytes

Versions: 10

Compression:

Stored size: 375 Bytes

Contents

module TbCore
  class ApplicationController < ActionController::Base
    protect_from_forgery

    include TbCore::ErrorHandling
    include TbCore::Redirection
    include TbCore::UserAuthentication
    self.responder = TbCore::Responder

    def not_found
      raise NotFoundError
    end

    ActiveSupport.run_load_hooks(:tb_core_application_controller, self)
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tb_core-1.5.4 app/controllers/tb_core/application_controller.rb
tb_core-1.5.3 app/controllers/tb_core/application_controller.rb
tb_core-1.5.2 app/controllers/tb_core/application_controller.rb
tb_core-1.5.1 app/controllers/tb_core/application_controller.rb
tb_core-1.5.0 app/controllers/tb_core/application_controller.rb
tb_core-1.4.8 app/controllers/tb_core/application_controller.rb
tb_core-1.4.7 app/controllers/tb_core/application_controller.rb
tb_core-1.4.6 app/controllers/tb_core/application_controller.rb
tb_core-1.4.5 app/controllers/tb_core/application_controller.rb
tb_core-1.4.4 app/controllers/tb_core/application_controller.rb