This commit is contained in:
Tben
2023-05-22 08:51:33 +01:00
parent dcd0576147
commit 8aa34d0848
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ const https = require("https");
* database: string
* }}
*
* @returns {FunctionReturn}
* @returns { Promise<FunctionReturn> }
*/
module.exports = async function ({ key, payload, database }) {
/**
+1 -1
View File
@@ -31,7 +31,7 @@ const encrypt = require("../functions/encrypt");
* @param {String} params.encryptionKey - Encryption Key
* @param {String} params.encryptionSalt - Encryption Salt
*
* @returns {FunctionReturn}
* @returns { Promise<FunctionReturn>}
*/
module.exports = async function ({ key, payload, database, response, encryptionKey, encryptionSalt }) {
/**
+1 -1
View File
@@ -30,7 +30,7 @@ const https = require("https");
* @param {String | Object} [params.payload={ id: 4, first_name: "Benjamin" }] - User Object.
* @param {number} [params.payload.id] - User id => Required
*
* @returns {FunctionReturn}
* @returns { Promise<FunctionReturn>}
*/
module.exports = async function ({ key, payload, database }) {
/**