akkounts/app/services/user_manager/import_remote_avatar.rb
Râu Cao c53d9d3c60
All checks were successful
continuous-integration/drone/push Build is passing
WIP Sync Mastodon IDs/profiles to local accounts
2025-05-17 16:46:43 +04:00

13 lines
197 B
Ruby

module UserManager
class ImportRemoteAvatar < UserManagerService
def initialize(user:, avatar_url:)
@user = user
@avatar_url = avatar_url
end
def call
end
end
end