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