WIP Sync Mastodon IDs/profiles to local accounts
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
2025-05-17 16:44:28 +04:00
parent c291765777
commit 760e89cb68
4 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
module UserManager
class ImportRemoteAvatar < UserManagerService
def initialize(user:, avatar_url:)
@user = user
@avatar_url = avatar_url
end
def call
end
end
end