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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-05-13 20:06:51 +0300
committerDouwe Maan <douwe@selenight.nl>2017-05-16 23:51:22 +0300
commit7844fa1fc2e54de9b36f6bb2faa6d2f3385fc4f7 (patch)
tree053b42a3cce696ae37ed014f96cd3984b7a64b5a /app/models/blob_viewer
parent67312fceaa69abb2bc88aa62601625e9f6a62270 (diff)
Add auxiliary viewer for CONTRIBUTING
Diffstat (limited to 'app/models/blob_viewer')
-rw-r--r--app/models/blob_viewer/contributing.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/models/blob_viewer/contributing.rb b/app/models/blob_viewer/contributing.rb
new file mode 100644
index 00000000000..fbd1dd48697
--- /dev/null
+++ b/app/models/blob_viewer/contributing.rb
@@ -0,0 +1,10 @@
+module BlobViewer
+ class Contributing < Base
+ include Auxiliary
+ include Static
+
+ self.partial_name = 'contributing'
+ self.file_types = %i(contributing)
+ self.binary = false
+ end
+end