2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-03-24 18:18:03 -04:00
|
|
|
class PersonalSnippet < Snippet
|
2018-04-19 12:22:23 -04:00
|
|
|
include WithUploads
|
2020-04-22 08:09:29 -04:00
|
|
|
|
2020-08-14 11:10:05 -04:00
|
|
|
def parent_user
|
|
|
|
author
|
|
|
|
end
|
|
|
|
|
2020-04-22 08:09:29 -04:00
|
|
|
def skip_project_check?
|
|
|
|
true
|
|
|
|
end
|
2013-03-24 18:18:03 -04:00
|
|
|
end
|