Validate Web::PushSubscription (#11971)
This commit is contained in:
parent
059945c97c
commit
07b057eabb
3 changed files with 23 additions and 1 deletions
|
@ -20,6 +20,10 @@ class Web::PushSubscription < ApplicationRecord
|
|||
|
||||
has_one :session_activation, foreign_key: 'web_push_subscription_id', inverse_of: :web_push_subscription
|
||||
|
||||
validates :endpoint, presence: true
|
||||
validates :key_p256dh, presence: true
|
||||
validates :key_auth, presence: true
|
||||
|
||||
def push(notification)
|
||||
I18n.with_locale(associated_user&.locale || I18n.default_locale) do
|
||||
push_payload(payload_for_notification(notification), 48.hours.seconds)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue