1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 10:22:39 +01:00

refactor http signatures into own class

add generic inbox handler
add function for fetching and creating locally a federated user
This commit is contained in:
Madeline 2023-09-27 08:41:02 +00:00
parent 4bab9117a0
commit 29f1c36527

View File

@ -25,6 +25,10 @@ export class FederationKey extends BaseClassWithoutId {
@Column()
domain: string;
/** The federated preferred username */
@Column()
username: string;
/** The remote ID ( actor URL ) of this user */
@Column()
federatedId: string;