13 lines
225 B
Ruby
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
|