13 lines
167 B
Ruby
13 lines
167 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PersonalSnippet < Snippet
|
|
include WithUploads
|
|
|
|
def parent_user
|
|
author
|
|
end
|
|
|
|
def skip_project_check?
|
|
true
|
|
end
|
|
end
|