discourse/app/models/email_log.rb

15 lines
463 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class EmailLog < ActiveRecord::Base
belongs_to :user
validates_presence_of :email_type
validates_presence_of :to_address
after_create do
# Update last_emailed_at if the user_id is present
User.update_all("last_emailed_at = CURRENT_TIMESTAMP", id: user_id) if user_id.present?
2013-02-05 14:16:51 -05:00
end
2013-03-17 15:08:38 -04:00
def self.count_per_day(sinceDaysAgo = 30)
where('created_at > ?', sinceDaysAgo.days.ago).group('date(created_at)').order('date(created_at)').count
2013-03-17 15:08:38 -04:00
end
2013-02-05 14:16:51 -05:00
end