forked from dparker18/redmine_http_auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.rb
35 lines (29 loc) · 1.13 KB
/
init.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'redmine'
Rails.logger.info 'Starting Redmine Http Auth plugin for RedMine'
Redmine::Plugin.register :redmine_http_auth do
name 'HTTP Authentication plugin'
author 'Adam Lantos'
url 'http://github.com/AdamLantos/redmine_http_auth' if respond_to?(:url)
description 'A plugin for doing HTTP authentication'
version '0.3.0-dev-redmine-2.x'
menu :account_menu, :login_httpauth, "/httpauth-login",
:before => :login, :caption => :login_httpauth_title,
:if => Proc.new { User.current.anonymous? && Setting.plugin_redmine_http_auth['enable'] == 'true' }
settings :partial => 'settings/redmine_http_auth_settings',
:default => {
'enable' => 'true',
'server_env_var' => 'REMOTE_USER',
'lookup_mode' => 'login',
'auto_registration' => 'false',
'keep_sessions' => 'false'
}
end
#Dispatcher.to_prepare do
# #include our code
# ApplicationController.send(:include, HTTPAuthPatch)
#end
RedmineApp::Application.config.after_initialize do
unless ApplicationController.include? (RedmineHttpAuth::HTTPAuthPatch)
ApplicationController.send(:include, RedmineHttpAuth::HTTPAuthPatch)
end
end