summaryrefslogtreecommitdiff
path: root/app/controllers/snippets/blobs_controller.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-22 12:08:47 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-22 12:08:47 +0000
commit6046a605fdbb6d180861c978d17fe3516b2e7507 (patch)
tree42cc483042b341475ba14d8fbfad6432a15327f4 /app/controllers/snippets/blobs_controller.rb
parent5956978e1d2aa2b5b35c2d79f67f6b9706b8ec4e (diff)
downloadgitlab-ce-6046a605fdbb6d180861c978d17fe3516b2e7507.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/snippets/blobs_controller.rb')
-rw-r--r--app/controllers/snippets/blobs_controller.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/snippets/blobs_controller.rb b/app/controllers/snippets/blobs_controller.rb
new file mode 100644
index 00000000000..d7c4bbcf8f2
--- /dev/null
+++ b/app/controllers/snippets/blobs_controller.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+class Snippets::BlobsController < Snippets::ApplicationController
+ include Snippets::BlobsActions
+
+ skip_before_action :authenticate_user!, only: [:raw]
+end