debian-mirror-gitlab/app/controllers/snippets/application_controller.rb

25 lines
413 B
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
class Snippets::ApplicationController < ApplicationController
include FindSnippet
include SnippetAuthorizations
2021-01-03 14:25:43 +05:30
feature_category :snippets
2020-06-23 00:09:42 +05:30
private
def authorize_read_snippet!
return if can?(current_user, :read_snippet, snippet)
if current_user
render_404
else
authenticate_user!
end
end
def snippet_klass
PersonalSnippet
end
end