diff options
Diffstat (limited to 'internal/processing/processor.go')
-rw-r--r-- | internal/processing/processor.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/processing/processor.go b/internal/processing/processor.go index 3afc25196..8572b583c 100644 --- a/internal/processing/processor.go +++ b/internal/processing/processor.go @@ -137,6 +137,7 @@ type Processor interface { // InstanceGet retrieves instance information for serving at api/v1/instance InstanceGet(ctx context.Context, domain string) (*apimodel.Instance, gtserror.WithCode) + InstancePeersGet(ctx context.Context, authed *oauth.Auth, includeSuspended bool, includeOpen bool, flat bool) (interface{}, gtserror.WithCode) // InstancePatch updates this instance according to the given form. // // It should already be ascertained that the requesting account is authenticated and an admin. |