MCPcopy Index your code
hub / github.com/triggerdotdev/trigger.dev / v3RunsPath

Function v3RunsPath

apps/webapp/app/utils/pathBuilder.ts:364–372  ·  view source on GitHub ↗
(
  organization: OrgForPath,
  project: ProjectForPath,
  filters?: TaskRunListSearchFilters
)

Source from the content-addressed store, hash-verified

362}
363
364export function v3RunsPath(
365 organization: OrgForPath,
366 project: ProjectForPath,
367 filters?: TaskRunListSearchFilters
368) {
369 const searchParams = objectToSearchParams(filters);
370 const query = searchParams ? `?${searchParams.toString()}` : "";
371 return `${v3ProjectPath(organization, project)}/runs${query}`;
372}
373
374export function v3RunPath(organization: OrgForPath, project: ProjectForPath, run: v3RunForPath) {
375 return `${v3RunsPath(organization, project)}/${run.friendlyId}`;

Callers 8

V3ProjectSideMenuFunction · 0.90
actionFunction · 0.90
actionFunction · 0.90
CancelRunsFunction · 0.90
ReplayRunsFunction · 0.90
PageFunction · 0.90
PageFunction · 0.90
v3RunPathFunction · 0.85

Calls 3

objectToSearchParamsFunction · 0.90
v3ProjectPathFunction · 0.85
toStringMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…