feat: replace instance actor decorator with real DB row
Some checks failed
CI / Check / Test (push) Failing after 52s

Migrations (postgres + sqlite) insert a service actor with a well-known
UUID. Removes the InstanceActorUserRepo wrapper.
This commit is contained in:
2026-05-30 03:16:03 +02:00
parent 1b9a6617f3
commit 6bd728fd50
4 changed files with 26 additions and 64 deletions

View File

@@ -0,0 +1,8 @@
INSERT OR IGNORE INTO users (id, email, password_hash, created_at, username)
VALUES (
'00000000-0000-4000-8000-000000000000',
'noreply@instance.invalid',
'!service-actor-no-login',
datetime('now'),
'instance'
);