diff options
| author | Yoshie Muranaka <yoshiemuranaka@gmail.com> | 2019-08-01 16:19:40 -0500 |
|---|---|---|
| committer | Gunnar Mills <gmills@us.ibm.com> | 2019-08-23 20:18:23 +0000 |
| commit | b4d9c09a6c34f70260a686430e6891301a8da7b3 (patch) | |
| tree | a0d8b21830c1c4509a23562920f8d689640a511e /app/common/services | |
| parent | dbafdc5f8f5cff2afeaece248a07a8ffc15ad8c8 (diff) | |
| download | phosphor-webui-b4d9c09a6c34f70260a686430e6891301a8da7b3.tar.gz phosphor-webui-b4d9c09a6c34f70260a686430e6891301a8da7b3.zip | |
Add local user manual unlock
Enables manual unlock from the GUI when a user is locked out
due to failed login attempts above allowed threshold.
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I63e28a4d6feed9eb6d4d09c0431d31e7bd6924c2
Diffstat (limited to 'app/common/services')
| -rw-r--r-- | app/common/services/api-utils.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/common/services/api-utils.js b/app/common/services/api-utils.js index 90a8cb3..ebc2956 100644 --- a/app/common/services/api-utils.js +++ b/app/common/services/api-utils.js @@ -618,7 +618,7 @@ window.angular && (function(angular) { data: data }); }, - updateUser: function(user, newUser, passwd, role, enabled) { + updateUser: function(user, newUser, passwd, role, enabled, locked) { var data = {}; if ((newUser !== undefined) && (newUser != null)) { data['UserName'] = newUser; @@ -632,6 +632,9 @@ window.angular && (function(angular) { if ((passwd !== undefined) && (passwd != null)) { data['Password'] = passwd; } + if ((locked !== undefined) && (locked !== null)) { + data['Locked'] = locked + } return $http({ method: 'PATCH', url: DataService.getHost() + |

