1
0
Fork 0
pixelfed/app/Listeners/AuthLogin.php

38 lines
650 B
PHP
Raw Normal View History

2018-07-23 17:29:20 +00:00
<?php
2018-09-16 00:36:04 +00:00
namespace App\Listeners;
2018-07-23 17:29:20 +00:00
2018-08-28 03:07:36 +00:00
use App\User;
use App\UserSetting;
2018-09-16 00:36:04 +00:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
2018-07-23 17:29:20 +00:00
2018-09-16 00:36:04 +00:00
class AuthLogin
2018-07-23 17:29:20 +00:00
{
/**
2018-09-16 00:36:04 +00:00
* Create the event listener.
2018-07-23 17:29:20 +00:00
*
* @return void
*/
public function __construct()
{
//
}
2018-09-16 00:36:04 +00:00
/**
* Handle the event.
*
* @param object $event
* @return void
*/
public function handle($event)
2018-07-23 17:29:20 +00:00
{
2018-09-16 00:36:04 +00:00
$user = $event->user;
2018-08-28 03:07:36 +00:00
if (empty($user->settings)) {
$settings = new UserSetting();
2018-07-23 17:29:20 +00:00
$settings->user_id = $user->id;
$settings->save();
}
}
}