mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
13 lines
224 B
Ruby
13 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Workers
|
|
class ImportUser < ArchiveBase
|
|
private
|
|
|
|
def perform_archive_job(user_id)
|
|
user = User.find(user_id)
|
|
ImportService.new.import_by_user(user)
|
|
end
|
|
end
|
|
end
|