WIP Sync Mastodon IDs/profiles to local accounts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-05-17 16:44:28 +04:00
parent c291765777
commit c53d9d3c60
4 changed files with 95 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