MCPcopy Create free account
hub / github.com/gotify/server / constructor

Method constructor

ui/src/client/ClientStore.ts:9–11  ·  view source on GitHub ↗
(private readonly snack: SnackReporter)

Source from the content-addressed store, hash-verified

7
8export class ClientStore extends BaseStore<IClient> {
9 public constructor(private readonly snack: SnackReporter) {
10 super();
11 }
12
13 protected requestItems = (): Promise<IClient[]> =>
14 axios.get<IClient[]>(`${config.get('url')}client`).then((response) => response.data);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected