From 5b010bcc53c6dd85ed054778e1d6e7d3c94e820a Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Mon, 9 Sep 2024 16:58:11 +0200 Subject: [PATCH] fix --- packages/api/src/utility/checkLicense.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/api/src/utility/checkLicense.js b/packages/api/src/utility/checkLicense.js index b43b3c1f7..a21a66c40 100644 --- a/packages/api/src/utility/checkLicense.js +++ b/packages/api/src/utility/checkLicense.js @@ -5,6 +5,14 @@ function checkLicense() { }; } +function checkLicenseKey(key) { + return { + status: 'ok', + type: 'community', + }; +} + module.exports = { checkLicense, + checkLicenseKey, };