2014-03-11 08:58:36 +00:00
|
|
|
module FileStoreClean
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2015-03-05 21:38:45 +00:00
|
|
|
def destroy
|
2016-06-10 14:21:42 +01:00
|
|
|
DestroyFilesFromFileStoreJob.perform_async(sha1_of_file_store_files) if Rails.env.production?
|
2015-03-05 21:38:45 +00:00
|
|
|
super
|
|
|
|
end
|
2014-03-11 08:58:36 +00:00
|
|
|
|
2015-03-05 21:38:45 +00:00
|
|
|
def sha1_of_file_store_files
|
|
|
|
raise NotImplementedError, "You should implement this method"
|
|
|
|
end
|
2014-03-11 08:58:36 +00:00
|
|
|
|
|
|
|
end
|