DocWeave / frontend /src /api /dashboard.js
shak3008's picture
feat: complete end-to-end platform with all standout behaviors
fcacf10
Raw
History Blame Contribute Delete
188 Bytes
import { apiRequest } from "./client";
export async function getDashboardStats(workspaceId) {
return apiRequest(`/dashboard/stats?workspace_id=${encodeURIComponent(workspaceId)}`);
}