Update permissions

In order to restrict users with certain roles from performing certain actions, permissions need to be introduced. To configure the permissions, the following actions must be taken.

ACTION S11: Update permissions and roles

If you want to adapt the permissions, you must modify the helm/values.yml file.

Example values.yml after feature generation
...
permission:
    enabled: true
    spec:
        permissions:
            FEATURE:
                CREATE: Create feature
                EDIT: Edit feature
                DELETE: Delete feature
                SAVE: Update and save feature
                IMPORT: Import feature
                EXPORT: Export feature
                VIEW: View mode for feature
                SEARCH: Search feature
                BACK: Navigate back in details of feature

Refer to the permissions cookbook for more information and instructions on how to import permissions.

Remove the "ACTION" comment after working on this task