mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update UserObserver
This commit is contained in:
parent
a4d3f55efc
commit
b436ac2cbb
1 changed files with 6 additions and 3 deletions
|
@ -6,6 +6,7 @@ use App\Jobs\AvatarPipeline\CreateAvatar;
|
|||
use App\Profile;
|
||||
use App\User;
|
||||
use App\UserSetting;
|
||||
use DB;
|
||||
|
||||
class UserObserver
|
||||
{
|
||||
|
@ -41,9 +42,11 @@ class UserObserver
|
|||
}
|
||||
|
||||
if (empty($user->settings)) {
|
||||
$settings = new UserSetting();
|
||||
$settings->user_id = $user->id;
|
||||
$settings->save();
|
||||
DB::transaction(function() use($user) {
|
||||
UserSetting::firstOrCreate([
|
||||
'user_id' => $user->id
|
||||
]);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue