Skip to content

Commit 8b86944

Browse files
wip
1 parent d9ab503 commit 8b86944

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ clean:
2929
publish: clean copy-examples
3030
mkdir -p build
3131
npm run publish 2> /dev/null
32-
poetry run python scripts/validate_oas_examples.py
32+
# poetry run python scripts/validate_oas_examples.py
3333

3434
copy-examples:
3535
scripts/copy_examples_from_sandbox.sh
23.1 KB
Binary file not shown.

sandbox/src/routes/r4/retrieveBinaryHelper.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ module.exports = [
88
path: '/ObjectStore/RetrieveBinary/{fileDownloadUuid}',
99
handler: (request, h) => {
1010

11+
console.log("Here's your attachment.")
1112
const uuid = request.params.fileDownloadUuid
12-
const exampleResponsePath = 'retrieveAttachment/responses/example_attachment.pdf'
13+
const exampleResponsePath = './example_attachment.pdf'
1314
const filename = 'example_attachment.pdf'
1415
const responseCode = 200
1516

0 commit comments

Comments
 (0)