9 lines
252 B
Ruby
9 lines
252 B
Ruby
class PushNotification < ApplicationRecord
|
|
belongs_to :event, foreign_key: 'event_id'
|
|
belongs_to :device_token, foreign_key: 'device_token_id'
|
|
|
|
validates :title, :body, presence: true, allow_blank: false
|
|
|
|
delegate :token, to: :device_token
|
|
end
|