summaryrefslogtreecommitdiffstats
path: root/config/initializers/30-redmine.rb
blob: 1018ca18c3456b983e7ba064e3259cf615e4fdfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
I18n.default_locale = 'en'
I18n.backend = Redmine::I18n::Backend.new

require 'redmine'

# Load the secret token from the Redmine configuration file
secret = Redmine::Configuration['secret_token']
if secret.present?
  RedmineApp::Application.config.secret_token = secret
end

Redmine::Plugin.load
unless Redmine::Configuration['mirror_plugins_assets_on_startup'] == false
  Redmine::Plugin.mirror_assets
end