From 00752ae04313a0bd3319c324106b8cc7dfa0d55f Mon Sep 17 00:00:00 2001 From: Will Toozs Date: Wed, 17 Jul 2024 17:02:24 +0200 Subject: [PATCH] fixup: jsdoc ref in callPostObject handler --- lib/api/apiUtils/apiCallers/callPostObject.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/api/apiUtils/apiCallers/callPostObject.js b/lib/api/apiUtils/apiCallers/callPostObject.js index 6d8f76c39a..b44e8f6a9d 100644 --- a/lib/api/apiUtils/apiCallers/callPostObject.js +++ b/lib/api/apiUtils/apiCallers/callPostObject.js @@ -5,9 +5,9 @@ const fs = require('fs'); const path = require('path'); const os = require('os'); -// per doc: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-HTTPPOSTForms.html#HTTPPOSTFormDeclaration +/** @see per doc: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-HTTPPOSTForms.html#HTTPPOSTFormDeclaration */ const MAX_FIELD_SIZE = 20 * 1024; // 20KB -// per doc: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html +/** @see per doc: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html */ const MAX_KEY_SIZE = 1024; async function authenticateRequest(request, requestContexts, log) {