1
0
Fork 0

Update AdminUserController, fix modlog bug

This commit is contained in:
Daniel Supernault 2020-02-20 00:01:18 -07:00
parent c5e8e7907a
commit e07bd934ac
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 11 additions and 11 deletions

View File

@ -77,10 +77,6 @@ trait AdminUserController
}
if($changed == true) {
$profile->save();
$user->save();
}
ModLogService::boot()
->objectUid($user->id)
->objectId($user->id)
@ -92,6 +88,10 @@ trait AdminUserController
])
->accessLevel('admin')
->save();
$profile->save();
$user->save();
}
return redirect('/i/admin/users/show/' . $user->id);
}