gitlab-org--gitlab-foss/app/models/concerns/blob_language_from_git_attr...

12 lines
237 B
Ruby

# frozen_string_literal: true
module BlobLanguageFromGitAttributes
extend ActiveSupport::Concern
def language_from_gitattributes
return unless repository&.exists?
repository.gitattribute(path, 'gitlab-language')
end
end