6 lines
99 B
Ruby
6 lines
99 B
Ruby
|
class NotifyJob < ApplicationJob
|
||
|
def perform
|
||
|
Notification.send_scheduled_for_today
|
||
|
end
|
||
|
end
|