-
Notifications
You must be signed in to change notification settings - Fork 27
/
init.rb
63 lines (58 loc) · 2.27 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# frozen_string_literal: true
# Redmine plugin OAuth
#
# Karel Pičman <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require 'redmine'
require File.expand_path('lib/redmine_oauth/hooks/controllers/account_controller_hooks', __dir__)
require File.expand_path('lib/redmine_oauth/hooks/views/base_view_hooks', __dir__)
require File.expand_path('lib/redmine_oauth/hooks/views/login_view_hooks', __dir__)
require File.expand_path('lib/redmine_oauth/patches/settings_controller_patch', __dir__)
require File.expand_path('lib/redmine_oauth/patches/account_controller_patch', __dir__)
Redmine::Plugin.register :redmine_oauth do
name 'Redmine OAuth plugin'
author 'Karel Pičman'
description 'Redmine OAuth plugin'
version '2.2.8'
url 'https://github.com/kontron/redmine_oauth'
author_url 'https://github.com/kontron/redmine_oauth/graphs/contributors'
requires_redmine version_or_higher: '5.1.0'
settings default: {
oauth_name: 'none',
site: '',
client_id: '',
client_secret: '',
tenant_id: '',
custom_name: '',
custom_auth_endpoint: '',
custom_token_endpoint: '',
custom_profile_endpoint: '',
custom_scope: 'openid profile email',
custom_uid_field: 'preferred_username',
custom_email_field: 'email',
button_color: '#ffbe6f',
button_icon: 'fas fa-address-card',
hide_login_form: nil,
self_registration: '0',
custom_firstname_field: 'given_name',
custom_lastname_field: 'family_name',
update_login: nil,
oauth_logout: nil,
oauth_login: nil,
custom_logout_endpoint: '',
validate_user_roles: ''
}, partial: 'settings/oauth_settings'
end