feat: replace instance actor decorator with real DB row
Some checks failed
CI / Check / Test (push) Failing after 52s
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:
@@ -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'
|
||||
);
|
||||
Reference in New Issue
Block a user