Skip to content

Commit fb5578a

Browse files
author
root
committed
Merge branch 'devel' into v1.0.x
2 parents 624767d + fbd896d commit fb5578a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: app/views/common/_git_urls.html.haml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
= javascript_include_tag 'application', plugin: 'redmine_git_hosting'
88

99
- repositories = Array.wrap(repository) unless repositories
10-
- if repositories.map(&:available_urls).flatten.reject { |m| m.blank? }.any?
10+
- if repositories.map(&:available_urls).reject { |h| h.empty? }.any?
1111
- repositories.sort_by { |r| r.is_default ? 0 : 1 }.each do |repository|
1212
- next if repository.available_urls.empty?
1313
- present repository do |p|

Diff for: lib/redmine_git_hosting/patches/users_controller_patch.rb

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def self.included(base)
1414
alias_method_chain :destroy, :git_hosting
1515

1616
helper :gitolite_public_keys
17+
helper :redmine_bootstrap_kit
1718
end
1819
end
1920

0 commit comments

Comments
 (0)