BathHacked/energy-sparks

View on GitHub
app/models/email.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# == Schema Information
#
# Table name: emails
#
#  contact_id :bigint(8)        not null
#  created_at :datetime         not null
#  id         :bigint(8)        not null, primary key
#  sent_at    :datetime
#  updated_at :datetime         not null
#
# Indexes
#
#  index_emails_on_contact_id  (contact_id)
#
# Foreign Keys
#
#  fk_rails_...  (contact_id => contacts.id) ON DELETE => cascade
#

class Email < ApplicationRecord
  belongs_to :contact
  has_many   :alert_subscription_events
  has_many   :alerts, through: :alert_subscription_events

  def sent?
    ! sent_at.nil?
  end
end