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
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 @@
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 @@
if ((passwd !== undefined) && (passwd != null)) {
data['Password'] = passwd;
}
+ if ((locked !== undefined) && (locked !== null)) {
+ data['Locked'] = locked
+ }
return $http({
method: 'PATCH',
url: DataService.getHost() +