Module: HttpBasicAuthentication::Patches

Defined in:
lib/http_basic_authentication/patches.rb,
lib/http_basic_authentication/patches/account_controller_patch.rb,
lib/http_basic_authentication/patches/application_controller_patch.rb

Overview

This module holds all patches of a default Redmine application

Defined Under Namespace

Modules: AccountControllerPatch, ApplicationControllerPatch

Class Method Summary collapse

Class Method Details

.apply!Object

Apply all patches



8
9
10
11
# File 'lib/http_basic_authentication/patches.rb', line 8

def self.apply!
  apply_to(::ApplicationController, ApplicationControllerPatch)
  apply_to(::AccountController, AccountControllerPatch)
end