Welcome to mirror list, hosted at ThFree Co, Russian Federation.

version_check_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f64d730b448618443f5449fc1807ec816c5415ad (plain)
1
2
3
4
5
6
7
module VersionCheckHelper
  def version_status_badge
    if Rails.env.production?
      image_tag VersionCheck.new.url
    end
  end
end