7 lines
137 B
Ruby
7 lines
137 B
Ruby
class PaymentNotificationEmailNonprofitJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(*args)
|
|
# Do something later
|
|
end
|
|
end
|