Files
fizzy/app/models/concerns/push_notifiable.rb
T
Jason Zimdars 0afc738d19 Whitespace
2025-07-21 20:11:03 -05:00

13 lines
225 B
Ruby

module PushNotifiable
extend ActiveSupport::Concern
included do
after_create_commit :push_notification_later
end
private
def push_notification_later
PushNotificationJob.perform_later(self)
end
end