mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 07:09:39 +02:00
8 lines
102 B
Ruby
8 lines
102 B
Ruby
|
class UserPurgeJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(user)
|
||
|
user.purge
|
||
|
end
|
||
|
end
|