fixed fetchDeploys acl

This commit is contained in:
Sebastian Frank 2019-03-06 10:45:48 +01:00
parent 1d5cf129dd
commit 311e8e49ba
Signed by: apairon
GPG Key ID: 7270D06DDA7FE8C3

@ -155,7 +155,7 @@
if (!this.building) { if (!this.building) {
return; return;
} }
App.callmodule('drone:fetchDeploys').then(function(data) { App.callmodule('drone:fetchDeploys', null, 'manage.view').then(function(data) {
if (data && data.result && data.result.deploys) { if (data && data.result && data.result.deploys) {
$this.deploys = data.result.deploys; $this.deploys = data.result.deploys;
$this.building = data.result.building; $this.building = data.result.building;