Skip to content

Commit

Permalink
client: avoid using verbose flag to fetch the workflow list
Browse files Browse the repository at this point in the history
  • Loading branch information
giuseppe-steduto committed Nov 20, 2023
1 parent aa77618 commit 654183c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reana-ui/src/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export const GITLAB_AUTH_URL = `${api}/api/gitlab/connect`;
export const GITLAB_PROJECTS_URL = `${api}/api/gitlab/projects`;
export const GITLAB_WEBHOOK_URL = `${api}/api/gitlab/webhook`;
export const WORKFLOWS_URL = (params) =>
`${api}/api/workflows?verbose=true&${stringifyQueryParams(params)}`;
`${api}/api/workflows?include_progress=true&include_workspace_size=true&${stringifyQueryParams(
params,
)}`;
export const WORKFLOW_LOGS_URL = (id) => `${api}/api/workflows/${id}/logs`;
export const WORKFLOW_SPECIFICATION_URL = (id) =>
`${api}/api/workflows/${id}/specification`;
Expand Down

0 comments on commit 654183c

Please sign in to comment.