Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 832 Bytes

UPGRADE.md

File metadata and controls

35 lines (27 loc) · 832 Bytes

Nova Impersonating Banner

Upgrading from 2.x to 3.x

Require this package with composer.

composer require rhyslees/nova-impersonating-banner "^3.0"
npm install && npm run build

Configuration

Delete the nova-impersonating-banner.php file in config as we now use nova's config for impersonation.

/*
|--------------------------------------------------------------------------
| Nova Impersonation Redirection URLs
|--------------------------------------------------------------------------
|
| This configuration option allows you to specify a URL where Nova should
| redirect an administrator after impersonating another user and a URL
| to redirect the administrator after stopping impersonating a user.
|
*/

'impersonation' => [
    'started' => '/',
    'stopped' => '/',
],