You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2021/03/17 12:03:56 UTC

[cloudstack] branch 4.15 updated: Project Role Permission: Change default permission type to 'Deny' (#4832)

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 d81141e  Project Role Permission: Change default permission type to 'Deny' (#4832)
d81141e is described below

commit d81141ed37e2eb3b52b1ac885aeb329c9735186e
Author: Pearl Dsilva <pe...@gmail.com>
AuthorDate: Wed Mar 17 17:33:30 2021 +0530

    Project Role Permission: Change default permission type to 'Deny' (#4832)
    
    Co-authored-by: Pearl Dsilva <pe...@shapeblue.com>
---
 ui/src/views/project/iam/ProjectRolePermissionTab.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/src/views/project/iam/ProjectRolePermissionTab.vue b/ui/src/views/project/iam/ProjectRolePermissionTab.vue
index b986108..84c4636 100644
--- a/ui/src/views/project/iam/ProjectRolePermissionTab.vue
+++ b/ui/src/views/project/iam/ProjectRolePermissionTab.vue
@@ -133,7 +133,7 @@ export default {
       updateTable: false,
       rules: null,
       newRule: '',
-      newRulePermission: 'allow',
+      newRulePermission: 'deny',
       newRuleDescription: '',
       newRuleSelectError: false,
       drag: false,
@@ -159,7 +159,7 @@ export default {
     },
     resetNewFields () {
       this.newRule = ''
-      this.newRulePermission = 'allow'
+      this.newRulePermission = 'deny'
       this.newRuleDescription = ''
       this.newRuleSelectError = false
     },