This commit is contained in:
Jan Prochazka
2024-08-15 14:52:38 +02:00
parent 7193a4d26c
commit ecde2da2af
2 changed files with 5 additions and 12 deletions

View File

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