]> BookStack Code Mirror - bookstack/blobdiff - app/Auth/User.php
Fixed failing webhook test cases
[bookstack] / app / Auth / User.php
index 68e2ad6253a6bcc83d9dbfa748bc1782a53c9201..540a8d7abbe0d5ebd7f49ed34bd8957ec2b93e79 100644 (file)
@@ -28,7 +28,7 @@ use Illuminate\Support\Collection;
 /**
  * Class User.
  *
- * @property string     $id
+ * @property int        $id
  * @property string     $name
  * @property string     $slug
  * @property string     $email
@@ -178,7 +178,6 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon
             ->leftJoin('permission_role', 'ru.role_id', '=', 'permission_role.role_id')
             ->leftJoin('role_permissions', 'permission_role.permission_id', '=', 'role_permissions.id')
             ->where('ru.user_id', '=', $this->id)
-            ->get()
             ->pluck('name');
 
         return $this->permissions;