Allow to manage instance relays

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-04-02 11:45:15 +02:00
parent 7320299b3c
commit 0fc158a7d0
14 changed files with 239 additions and 9 deletions

View File

@ -11,6 +11,7 @@ enum Entities {
GROUP_TAGS = 'GroupTags',
PATRON_USERS = 'PatronUsers',
RELATIONSHIPS = 'Relationships',
RELAYS = 'Relays',
STATUSES = 'Statuses'
}
@ -24,6 +25,7 @@ interface EntityTypes {
[Entities.GROUP_TAGS]: Schemas.GroupTag;
[Entities.PATRON_USERS]: Schemas.PatronUser;
[Entities.RELATIONSHIPS]: Schemas.Relationship;
[Entities.RELAYS]: Schemas.Relay;
[Entities.STATUSES]: Schemas.Status;
}