mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-19 09:36:47 +10:00
8 lines
191 B
Ruby
8 lines
191 B
Ruby
module VersionCheckHelper
|
|
def version_status_badge
|
|
if Rails.env.production? && current_application_settings.version_check_enabled
|
|
image_tag VersionCheck.new.url
|
|
end
|
|
end
|
|
end
|