dashboard: only show volumes UI for admins and owners

This commit is contained in:
Johannes Zellner
2023-08-03 10:43:28 +02:00
parent 47d57a3971
commit db26a6beb9

View File

@@ -5,7 +5,7 @@
/* global async */
angular.module('Application').controller('VolumesController', ['$scope', '$location', '$timeout', 'Client', function ($scope, $location, $timeout, Client) {
Client.onReady(function () { if (!Client.getUserInfo().isAtLeastUserManager) $location.path('/'); });
Client.onReady(function () { if (!Client.getUserInfo().isAtLeastAdmin) $location.path('/'); });
var refreshVolumesTimerId = null;