license refactor WIP

This commit is contained in:
Jan Prochazka
2024-08-13 16:29:07 +02:00
parent 42a79b2557
commit 75465bf415
12 changed files with 296 additions and 18 deletions

View File

@@ -1,4 +1,11 @@
function checkLicense() {
function checkLicenseWeb() {
return {
status: 'ok',
type: 'community',
};
}
function checkLicenseApp() {
return {
status: 'ok',
type: 'community',
@@ -6,5 +13,6 @@ function checkLicense() {
}
module.exports = {
checkLicense,
checkLicenseWeb,
checkLicenseApp,
};