20 lines
486 B
Ruby
20 lines
486 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Projects::Snippets::ApplicationController < Projects::ApplicationController
|
||
|
include FindSnippet
|
||
|
include SnippetAuthorizations
|
||
|
|
||
|
private
|
||
|
|
||
|
# This overrides the default snippet create authorization
|
||
|
# because ProjectSnippets are checked against the project rather
|
||
|
# than the user
|
||
|
def authorize_create_snippet!
|
||
|
return render_404 unless can?(current_user, :create_snippet, project)
|
||
|
end
|
||
|
|
||
|
def snippet_klass
|
||
|
ProjectSnippet
|
||
|
end
|
||
|
end
|