Disable folder feature

Is it possible to disable the folder feature completely?

Hey @sebastianjacobs,

You can set passbolt.plugins.folders.enabled configuration to false in your passbolt.php file.

Example:

<?php

return [
    ...
    'passbolt' => [
        ...
        'plugins' => [
            ...

            'folders' => [
                'enabled' => false,
            ],
        ],

        ...
    ],

    ...
];

Or if you want to just disable it for the “User” role then you can change the RBAC settings(administration > Role-Based Access Control > Find Can use folders and set it to Deny for User role).

1 Like