feat(salix): refs #6533 #6533 Remove version endpoint

This commit is contained in:
Javier Segarra 2024-04-27 20:04:55 +02:00
parent ff44166cd4
commit 4532eb1eec
3 changed files with 0 additions and 33 deletions

View File

@ -1,26 +0,0 @@
const packageJson = require(`${process.cwd()}/package.json`);
module.exports = Self => {
Self.remoteMethod('version', {
description: 'Gets all models information',
accepts: [
{
arg: 'ctx',
type: 'Object',
http: {source: 'context'}
}
],
returns: {
type: 'Object',
root: true
},
http: {
path: `/version`,
verb: 'GET'
}
});
Self.version = async function(ctx) {
return packageJson.version;
};
};

View File

@ -1,7 +1,6 @@
module.exports = function(Self) {
require('../methods/application/status')(Self);
require('../methods/application/version')(Self);
require('../methods/application/post')(Self);
require('../methods/application/execute')(Self);
require('../methods/application/executeProc')(Self);

View File

@ -8,12 +8,6 @@
"principalId": "$everyone",
"permission": "ALLOW"
},
{
"property": "version",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
},
{
"property": "post",
"principalType": "ROLE",