Query backup config only for admins

This commit is contained in:
Girish Ramakrishnan
2018-08-03 23:35:37 -07:00
parent 0c04d5bfc8
commit 473b35d807

View File

@@ -602,7 +602,7 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
fetchUsers();
fetchGroups();
getDomains();
getBackupConfig();
if ($scope.user.admin) getBackupConfig(); // FIXME: detect disabled backups some other way
}
var refreshAppsTimer = $interval(Client.refreshInstalledApps.bind(Client), 5000);