MCPcopy Create free account
hub / github.com/GmpABR/NexusFlow / getWorkspaceInvite

Function getWorkspaceInvite

frontend/src/api/workspaces.ts:99–102  ·  view source on GitHub ↗
(token: string)

Source from the content-addressed store, hash-verified

97};
98
99export const getWorkspaceInvite = async (token: string) => {
100 const response = await api.get<WorkspaceInvite>(`/workspaces/invite/${token}`);
101 return response.data;
102};
103
104export const joinWorkspaceByToken = async (token: string) => {
105 const response = await api.post<{ message: string, workspaceId: number }>(`/workspaces/join/${token}`);

Callers 1

fetchInviteFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected