Files
archived-hc-harbor/app/models/sailors_log_slack_notification.rb
2025-02-22 01:58:46 -05:00

12 lines
190 B
Ruby

class SailorsLogSlackNotification < ApplicationRecord
after_create :notify_user
private
def notify_user
return if sent?
SailorsLogNotifyJob.perform_later(self.id)
end
end