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

favicon_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a5342a8d9d4cb388c889c11f3501f13dba36cac (plain)
1
2
3
4
5
6
7
module FaviconHelper
  def favicon_extension_whitelist
    FaviconUploader::EXTENSION_WHITELIST
      .map { |extension| "'.#{extension}'"}
      .to_sentence
  end
end