This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch 4.15
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.15 by this push:
     new abcd07c  ui: change createAccount to use post (#4812)
abcd07c is described below

commit abcd07c93f7d8f772f14bfeb18f175f70ef42535
Author: davidjumani <dj.davidjumani1...@gmail.com>
AuthorDate: Wed Mar 17 17:35:19 2021 +0530

    ui: change createAccount to use post (#4812)
---
 ui/src/views/iam/AddAccount.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/views/iam/AddAccount.vue b/ui/src/views/iam/AddAccount.vue
index eca86a7..38288f5 100644
--- a/ui/src/views/iam/AddAccount.vue
+++ b/ui/src/views/iam/AddAccount.vue
@@ -369,7 +369,7 @@ export default {
           params.networkdomain = values.networkdomain
         }
 
-        api('createAccount', params).then(response => {
+        api('createAccount', {}, 'POST', params).then(response => {
           this.$emit('refresh-data')
           this.$notification.success({
             message: this.$t('label.create.account'),

Reply via email to