This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git
The following commit(s) were added to refs/heads/master by this push:
new 9c020d9 config: don't ask for password twice (temporary fix)
9c020d9 is described below
commit 9c020d9f08618251aebb19e28115285a5fda9e38
Author: Rohit Yadav <[email protected]>
AuthorDate: Fri May 8 16:06:54 2020 +0530
config: don't ask for password twice (temporary fix)
As part of create user and create account auto-generated forms, the
passwords are asked twice. This remove that temporarily, as part of \#175
we may revisit this issue in the future GA milestone.
Signed-off-by: Rohit Yadav <[email protected]>
---
src/config/section/account.js | 2 +-
src/config/section/user.js | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/config/section/account.js b/src/config/section/account.js
index 62cdc8f..f33da29 100644
--- a/src/config/section/account.js
+++ b/src/config/section/account.js
@@ -53,7 +53,7 @@ export default {
icon: 'plus',
label: 'label.add.account',
listView: true,
- args: ['username', 'password', 'password', 'email', 'firstname',
'lastname', 'domainid', 'account', 'roleid', 'timezone', 'networkdomain']
+ args: ['username', 'password', 'email', 'firstname', 'lastname',
'domainid', 'account', 'roleid', 'timezone', 'networkdomain']
},
{
api: 'ldapCreateAccount',
diff --git a/src/config/section/user.js b/src/config/section/user.js
index df78378..480c299 100644
--- a/src/config/section/user.js
+++ b/src/config/section/user.js
@@ -29,7 +29,7 @@ export default {
icon: 'plus',
label: 'label.add.user',
listView: true,
- args: ['username', 'password', 'password', 'email', 'firstname',
'lastname', 'timezone', 'account', 'domainid']
+ args: ['username', 'password', 'email', 'firstname', 'lastname',
'timezone', 'account', 'domainid']
},
{
api: 'updateUser',