mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
12 lines
228 B
Ruby
12 lines
228 B
Ruby
class SailorsLogSlackNotification < ApplicationRecord
|
|
def notify_user!
|
|
return if sent?
|
|
|
|
SailorsLogNotifyJob.perform_now(self.id)
|
|
end
|
|
|
|
def notify_user_later!
|
|
SailorsLogNotifyJob.perform_later(self.id)
|
|
end
|
|
end
|