summaryrefslogtreecommitdiff
path: root/app/models/concerns/blob_language_from_git_attributes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/concerns/blob_language_from_git_attributes.rb')
-rw-r--r--app/models/concerns/blob_language_from_git_attributes.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/models/concerns/blob_language_from_git_attributes.rb b/app/models/concerns/blob_language_from_git_attributes.rb
new file mode 100644
index 00000000000..70213d22147
--- /dev/null
+++ b/app/models/concerns/blob_language_from_git_attributes.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+# Applicable for blob classes with project attribute
+module BlobLanguageFromGitAttributes
+ extend ActiveSupport::Concern
+
+ def language_from_gitattributes
+ return nil unless project
+
+ repository = project.repository
+ repository.gitattribute(path, 'gitlab-language')
+ end
+end