boot/salix.js deprecated
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
1892447b60
commit
d299f455d6
|
@ -11,7 +11,7 @@ export function factory($http, $window, $ocLazyLoad, $translatePartialLoader, $t
|
||||||
this.loaded = {};
|
this.loaded = {};
|
||||||
this.imports = {};
|
this.imports = {};
|
||||||
this.moduleImport = moduleImport;
|
this.moduleImport = moduleImport;
|
||||||
this.modelInfo = $http.get(`modelInfo`)
|
this.modelInfo = $http.get(`Schemas/modelInfo`)
|
||||||
.then(json => {
|
.then(json => {
|
||||||
this.onModelInfoReady(json);
|
this.onModelInfoReady(json);
|
||||||
this.modelInfo = true;
|
this.modelInfo = true;
|
||||||
|
|
|
@ -3,11 +3,10 @@
|
||||||
"base": "PersistedModel",
|
"base": "PersistedModel",
|
||||||
"acls": [
|
"acls": [
|
||||||
{
|
{
|
||||||
"property": "validations",
|
"property": "modelInfo",
|
||||||
"accessType": "EXECUTE",
|
|
||||||
"principalType": "ROLE",
|
"principalType": "ROLE",
|
||||||
"principalId": "$everyone",
|
"principalId": "$everyone",
|
||||||
"permission": "ALLOW"
|
"permission": "ALLOW"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -1,9 +0,0 @@
|
||||||
module.exports = function(app) {
|
|
||||||
// FIXME: Fix until the original can be used
|
|
||||||
app.get('/api/modelInfo', function(req, res) {
|
|
||||||
app.models.Schema.modelInfo({req}).then(json => {
|
|
||||||
res.set('Content-Type', 'application/json');
|
|
||||||
res.send(JSON.stringify(json));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
Loading…
Reference in New Issue