This plugin provides a way to impersonate users in the Kirby Panel. It adds a new button to the user profile page, where you can select a user to impersonate. This is useful for debugging and support purposes.
- See what a user sees in the Panel using a different role
Note
The current version of this plugin requires Kirby 4 or higher.
composer require nerdcel/kirby-impersonate
Download and copy this repository to /site/plugins/kirby-impersonate
.
In order to use this plugin, you need to have the necessary permissions or role to impersonate users.
[
'nerdcel.kirby-impersonate' => [
// Add the roles that are allowed to impersonate users. admin is always allowed.
'roles' => ['superuser', '...']
],
]
MIT License © 2024-PRESENT Marcel Hieke-Hecht