File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import { persistAccount } from "../federation/account";
1616import { isPost , persistPost } from "../federation/post" ;
1717import { loginRequired } from "../login" ;
1818import { accountOwners , accounts , instances , relays } from "../schema" ;
19- import { isUuid } from "../uuid" ;
2019
2120const data = new Hono ( ) ;
2221
@@ -310,11 +309,12 @@ data.post("/relay", async (c) => {
310309 rsaPublicKeyJwk : await exportJwk ( rsaKeyPair . publicKey ) ,
311310 ed25519PrivateKeyJwk : await exportJwk ( ed25519KeyPair . privateKey ) ,
312311 ed25519PublicKeyJwk : await exportJwk ( ed25519KeyPair . publicKey ) ,
313- bio : "" ,
312+ bio : "This account is an internal account used by Hollo. It is used to follow remote relays. " ,
314313 language : "en" ,
315314 // TODO: Which visibility should be set?
316315 visibility : "public" ,
317316 discoverable : false ,
317+ themeColor : "pink" ,
318318 } )
319319 . onConflictDoNothing ( )
320320 . returning ( ) ;
You can’t perform that action at this time.
0 commit comments