-
Notifications
You must be signed in to change notification settings - Fork 47
/
init.rb
29 lines (25 loc) · 931 Bytes
/
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
require 'redmine'
require 'dispatcher'
require 'http_auth_patch'
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'
menu :account_menu, :login_httpauth, { :controller => '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