Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(centralidp): create decline_subscription permission #233

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ This role concept covers all roles related to
| Modify Apps (edit_apps) | x | | | | | | x | x | | | |
| Delete Apps (delete_apps) | x | | | | | | | x | | | |
| Activate App Subscription (activate_subscription) | x | x | | | | | | x | | x | |
| Decline App Subscription (decline_subscription) | x | x | | | | | | x | | x | |
| Get all owned apps and view technical details as well as customer data (app_management) | x | | | | | | x | x | x | | |
| Gets an overview of subscriptions active, inactive, pending (view_app_subscription) | x | x | x | | | x | | x | x | | |
| App Subscription Status (view_autosetup_status) | x | x | x | | | | | x | | | |
Expand Down Expand Up @@ -229,6 +230,7 @@ This role concept covers all roles related to
| **Portal App (Cl2-CX-Portal)** | | | | | | | | |
| View connectors of BP (view_connectors) | | | | | x | | | |
| Customer Subscription Activation (activate_subscription) | x | | | | | | | |
| Customer Subscription Declination (decline_subscription) | x | | | | | | | |
| Register new connector (add_connectors) | x | | | | | | | |
| Create new service offering (add_service_offering) | x | | | | | | | |
| View Membership (view_membership) | | | | | | | x | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@
"delete_connectors",
"add_connectors",
"activate_subscription",
"decline_subscription",
"view_service_marketplace",
"update_own_user_account",
"view_service_offering",
Expand Down Expand Up @@ -694,6 +695,15 @@
"containerId": "5d09a280-1a45-4519-a086-c0f5d49e4ed8",
"attributes": {}
},
{
"id": "f8d81c07-fa16-4e84-9ad9-29f8d9dedbc3",
"name": "decline_subscription",
"description": "Declination of subscriptions",
"composite": false,
"clientRole": true,
"containerId": "5d09a280-1a45-4519-a086-c0f5d49e4ed8",
"attributes": {}
},
{
"id": "3cc2dbf1-3072-470b-92b1-49ef33ac0dd7",
"name": "Company Admin",
Expand Down Expand Up @@ -770,7 +780,8 @@
"view_notifications",
"view_service_subscriptions",
"app_management",
"activate_subscription"
"activate_subscription",
"decline_subscription"
],
"Cl3-CX-Semantic": [
"add_semantic_model",
Expand Down Expand Up @@ -913,6 +924,7 @@
"edit_apps",
"view_certificates",
"activate_subscription",
"decline_subscription",
"view_app_subscription",
"App Developer",
"view_autosetup_status"
Expand Down Expand Up @@ -1209,6 +1221,7 @@
"add_connectors",
"modify_user_account",
"activate_subscription",
"decline_subscription",
"update_own_user_account",
"update_service_offering",
"delete_notifications",
Expand Down Expand Up @@ -1657,6 +1670,7 @@
"Cl2-CX-Portal": [
"view_tech_user_management",
"activate_subscription",
"decline_subscription",
"app_management",
"add_service_offering",
"add_connectors"
Expand Down
Loading