MCPcopy Create free account
hub / github.com/ForgeAILab/forge / listProjectHookRuns

Function listProjectHookRuns

web/src/api/client.ts:248–256  ·  view source on GitHub ↗
(
  projectId: string,
  cursor?: string,
  limit = 20,
)

Source from the content-addressed store, hash-verified

246}
247
248export function listProjectHookRuns(
249 projectId: string,
250 cursor?: string,
251 limit = 20,
252): Promise<ProjectHookRunsResponse> {
253 return apiFetch<ProjectHookRunsResponse>(`/projects/${projectId}/project_hook_runs`, {
254 search: { cursor, limit },
255 })
256}
257
258export function markNotificationRead(notificationId: string): Promise<NotificationResponse> {
259 return apiFetch<NotificationResponse>(`/notifications/${notificationId}/read`, {

Callers 1

useProjectHookRunsQueryFunction · 0.90

Calls 1

apiFetchFunction · 0.85

Tested by

no test coverage detected