1
0
Fork 0
forked from mirror/pixelfed

Update UserObserver

This commit is contained in:
Daniel Supernault 2018-10-24 12:20:16 -06:00
parent a4d3f55efc
commit b436ac2cbb
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -6,6 +6,7 @@ use App\Jobs\AvatarPipeline\CreateAvatar;
use App\Profile; use App\Profile;
use App\User; use App\User;
use App\UserSetting; use App\UserSetting;
use DB;
class UserObserver class UserObserver
{ {
@ -41,9 +42,11 @@ class UserObserver
} }
if (empty($user->settings)) { if (empty($user->settings)) {
$settings = new UserSetting(); DB::transaction(function() use($user) {
$settings->user_id = $user->id; UserSetting::firstOrCreate([
$settings->save(); 'user_id' => $user->id
]);
});
} }
} }
} }