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: c98c7c4909a5460e831bc130bd57b0e740a7de8f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module FaviconHelper
  def favicon_extension_allowlist
    FaviconUploader::EXTENSION_ALLOWLIST
      .map { |extension| "'.#{extension}'" }
      .to_sentence
  end
end