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

blobs_controller.rb « snippets « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7c4bbcf8f2e058badaeb838008e7f3ddc325e1a (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Snippets::BlobsController < Snippets::ApplicationController
  include Snippets::BlobsActions

  skip_before_action :authenticate_user!, only: [:raw]
end