mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-10 13:34:59 +00:00
9 lines
113 B
Ruby
9 lines
113 B
Ruby
|
|
||
|
module Jobs
|
||
|
class DonationUser < ::Jobs::Base
|
||
|
def execute(args)
|
||
|
User.create(args)
|
||
|
end
|
||
|
end
|
||
|
end
|