nti / impersonation-bundle
Symfony NTIImpersonationBundle
Installs: 1 503
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 6
Forks: 1
Open Issues: 0
Type:symfony-bundle
This package is auto-updated.
Last update: 2024-11-10 00:13:43 UTC
README
Overview
This bundle lets you change the login to another user without needing the users' password. This is useful when you have a list of users and someone complains that they in particular are having a specific issue. Using this bundle you could change your login to that of the user without asking for the password.
Installation
-
Install the bundle using composer:
$ composer require ntidev/impersonation-bundle "dev-master"
-
Add the bundle configuration to the AppKernel
public function registerBundles() { $bundles = array( ... new NTI\ImpersonationBundle\NTIImpersonationBundle(), ... ); }
-
Setup the configuration in the
config.yml
# NTI nti_impersonation: redirect_route: 'deshblard' user_class: 'AppBundle\Entity\User\User' user_class_property: 'username' firewall: 'main'
-
Update the database schema
$ php app/console doctrine:schema:update
Requirements
- The entity that the bundle uses is currently hard coded to AppBundle\Entity\User\User and it uses the "username" property to find a valid user to impersonate.
Usage
-
Generate an impersonation key
$ php app/console nti:impersonation:generate-key [username]
-
Copy the provided key and go to the url:
/nti/impersonate/{key}
-
You will be redirected to the configured route logged in as the user for which the key was generated.