mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-27 13:50:48 -05:00
33 lines
539 B
PHP
33 lines
539 B
PHP
<?php namespace App\Listeners;
|
|
|
|
use App\Events\UserSettingsChanged;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldBeQueued;
|
|
|
|
class HandleUserSettingsChanged {
|
|
|
|
/**
|
|
* Create the event handler.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*
|
|
* @param UserSettingsChanged $event
|
|
* @return void
|
|
*/
|
|
public function handle(UserSettingsChanged $event)
|
|
{
|
|
$account = Auth::user()->account;
|
|
$account->loadLocalizationSettings();
|
|
}
|
|
|
|
}
|