discourse/app/models/user_export.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

30 lines
728 B
Ruby

# frozen_string_literal: true
class UserExport < ActiveRecord::Base
belongs_to :user
belongs_to :upload, dependent: :destroy
def self.remove_old_exports
UserExport.where('created_at < ?', 2.days.ago).find_each do |user_export|
user_export.destroy!
end
end
def self.base_directory
File.join(Rails.root, "public", "uploads", "csv_exports", RailsMultisite::ConnectionManagement.current_db)
end
end
# == Schema Information
#
# Table name: user_exports
#
# id :integer not null, primary key
# file_name :string not null
# user_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# upload_id :integer
#