Allow to specify fallbackEmail during user creation

This commit is contained in:
Johannes Zellner
2021-10-26 23:39:15 +02:00
parent 789438690d
commit d952b4485d
5 changed files with 22 additions and 4 deletions

View File

@@ -1767,6 +1767,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
Client.prototype.addUser = function (user, callback) {
var data = {
email: user.email,
fallbackEmail: user.fallbackEmail,
displayName: user.displayName,
role: user.role
};