Feature #32116 » 331.patch
lib/redmine/info.rb 2019-10-07 16:08:08.468343000 -0400 → lib/redmine/info.rb 2019-10-07 16:06:06.052343000 -0400 | ||
---|---|---|
16 | 16 |
["Database adapter", ActiveRecord::Base.connection.adapter_name] |
17 | 17 |
].map {|info| " %-30s %s" % info}.join("\n") + "\n" |
18 |
s << "Settings:\n" |
|
19 |
s << [ |
|
20 |
["Theme", Setting.ui_theme] |
|
21 |
].map {|info| " %-30s %s" % info}.join("\n") + "\n" |
|
22 | ||
18 | 23 |
s << "SCM:\n" |
19 | 24 |
Redmine::Scm::Base.all.each do |scm| |
20 | 25 |
scm_class = "Repository::#{scm}".constantize |