Files
archived-hc-harbor/app/models/sailors_log_slack_notification.rb
2025-04-11 14:28:21 -04:00

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