mirror of
https://github.com/redmine/redmine.git
synced 2025-11-09 14:56:01 +01:00
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@18788 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
239 B
Ruby
11 lines
239 B
Ruby
# frozen_string_literal: false
|
|
|
|
require 'open_id_authentication'
|
|
|
|
config.middleware.use OpenIdAuthentication
|
|
|
|
config.after_initialize do
|
|
OpenID::Util.logger = Rails.logger
|
|
ActionController::Base.send :include, OpenIdAuthentication
|
|
end
|