akkounts/app/services/user_manager/import_remote_avatar.rb
Râu Cao 760e89cb68
Some checks are pending
continuous-integration/drone/push Build is running
WIP Sync Mastodon IDs/profiles to local accounts
2025-05-17 16:44:28 +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