1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 02:12:40 +01:00
This commit is contained in:
Madeline 2023-08-14 21:00:29 +10:00
parent b9135a1051
commit cd9bcd53be
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
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")