-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding support for the download evidence folder endpoint #123
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -334,6 +334,35 @@ paths: | |||||
$ref: '#/components/schemas/Error' | ||||||
description: Unexpected error | ||||||
summary: Retrieve Workflow Run Evidence Summary File | ||||||
/workflow_runs/{workflow_run_id}/evidence_folder: | ||||||
get: | ||||||
description: | | ||||||
Retrieves the signed evidence folder for the designated Workflow Run | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
operationId: download_signed_evidence_folder | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
parameters: | ||||||
- description: Workflow Run ID | ||||||
in: path | ||||||
name: workflow_run_id | ||||||
required: true | ||||||
schema: | ||||||
format: uuid | ||||||
type: string | ||||||
responses: | ||||||
"302": | ||||||
description: Found | ||||||
headers: | ||||||
Location: | ||||||
description: Link to the signed evidence folder. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
schema: | ||||||
format: uri | ||||||
type: string | ||||||
default: | ||||||
content: | ||||||
application/json: | ||||||
schema: | ||||||
$ref: '#/components/schemas/Error' | ||||||
description: Unexpected error | ||||||
summary: Retrieve Workflow Run Evidence Summary File | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
/documents: | ||||||
get: | ||||||
description: All documents belonging to an applicant can be listed from this | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@miguelfteixeira please move your comments inside the original files (as files inside the
generated
folder are automatically built)@HoneyryderChuck please remove generated files from PR and run
./shell/run-prettier.sh
script to make the linter is happy about the changes, as in README.md.