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