diff --git a/packages/backend/src/core/SystemAccountService.ts b/packages/backend/src/core/SystemAccountService.ts index dc10191497..3f3afe6561 100644 --- a/packages/backend/src/core/SystemAccountService.ts +++ b/packages/backend/src/core/SystemAccountService.ts @@ -175,4 +175,16 @@ export class SystemAccountService { return updated; } + + public async getInstanceActor() { + return await this.fetch('actor'); + } + + public async getRelayActor() { + return await this.fetch('relay'); + } + + public async getProxyActor() { + return await this.fetch('proxy'); + } }