We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 624767d + fbd896d commit fb5578aCopy full SHA for fb5578a
app/views/common/_git_urls.html.haml
@@ -7,7 +7,7 @@
7
= javascript_include_tag 'application', plugin: 'redmine_git_hosting'
8
9
- repositories = Array.wrap(repository) unless repositories
10
-- if repositories.map(&:available_urls).flatten.reject { |m| m.blank? }.any?
+- if repositories.map(&:available_urls).reject { |h| h.empty? }.any?
11
- repositories.sort_by { |r| r.is_default ? 0 : 1 }.each do |repository|
12
- next if repository.available_urls.empty?
13
- present repository do |p|
lib/redmine_git_hosting/patches/users_controller_patch.rb
@@ -14,6 +14,7 @@ def self.included(base)
14
alias_method_chain :destroy, :git_hosting
15
16
helper :gitolite_public_keys
17
+ helper :redmine_bootstrap_kit
18
end
19
20
0 commit comments