9 lines
113 B
Ruby
Raw Normal View History

2017-05-04 17:23:41 +10:00
module Jobs
class DonationUser < ::Jobs::Base
def execute(args)
User.create(args)
end
end
end