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: c9a78f39c897ee5b0258c0d92596879dc40edf66 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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

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