10 lines
205 B
Ruby
10 lines
205 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ShelvedNotification < ActiveRecord::Base
|
||
|
belongs_to :notification
|
||
|
|
||
|
def process
|
||
|
NotificationEmailer.process_notification(notification, no_delay: true)
|
||
|
end
|
||
|
end
|