Add some help text how users and groups work wrt email

This commit is contained in:
Johannes Zellner
2016-09-28 12:54:26 +02:00
parent adc3c13a01
commit de25b34f71
2 changed files with 48 additions and 2 deletions

View File

@@ -377,6 +377,14 @@ angular.module('Application').controller('UsersController', ['$scope', '$locatio
});
};
$scope.showUserHelp = function () {
$('#userHelpModal').modal('show');
};
$scope.showGroupHelp = function () {
$('#groupHelpModal').modal('show');
};
function refresh() {
Client.getGroups(function (error, result) {
if (error) return console.error('Unable to get group listing.', error);