23 lines
383 B
Ruby
23 lines
383 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Snippets::ApplicationController < ApplicationController
|
||
|
include FindSnippet
|
||
|
include SnippetAuthorizations
|
||
|
|
||
|
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
|