add utility methods to get instance actor, relay actor, and proxy actor

This commit is contained in:
Hazelnoot 2025-03-25 17:19:04 -04:00
parent 76b1cf0526
commit 82e2952e3c

View file

@ -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');
}
}