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

Function createWorkspace

frontend/src/api/workspaces.ts:48–51  ·  view source on GitHub ↗
(data: CreateWorkspaceDto)

Source from the content-addressed store, hash-verified

46};
47
48export const createWorkspace = async (data: CreateWorkspaceDto) => {
49 const response = await api.post<Workspace>('/workspaces', data);
50 return response.data;
51};
52
53export const getWorkspaceBoards = async (id: number) => {
54 const response = await api.get(`/workspaces/${id}/boards`);

Callers 2

handleCreateFunction · 0.90
handleCreateWorkspaceFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected