This commit is contained in:
Madeline
2023-08-14 21:00:29 +10:00
parent b9135a1051
commit cd9bcd53be
2 changed files with 3 additions and 0 deletions

View File

@@ -520,6 +520,7 @@ export class Channel extends BaseClass {
preferredUsername: this.id,
summary: this.topic,
icon: undefined,
discoverable: true,
publicKey: {
id: `https://${webDomain}/fed/user/${this.id}#main-key`,

View File

@@ -96,6 +96,8 @@ export interface APPersonButMore extends APPerson {
owner: string;
publicKeyPem: string;
};
discoverable: boolean;
}
@Entity("users")