Merge pull request #1905 from matthewpi/issues/1902

Fixes stupid query and issue #1902 🤬
This commit is contained in:
Dane Everitt 2020-04-10 15:25:17 -07:00 committed by GitHub
commit 2b1585a2ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,8 @@ abstract class SubuserRequest extends ClientApiRequest
* Authorize the request and ensure that a user is not trying to modify themselves.
*
* @return bool
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function authorize(): bool
{
@ -52,6 +54,8 @@ abstract class SubuserRequest extends ClientApiRequest
* by the user making the request.
*
* @param array $permissions
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
protected function validatePermissionsCanBeAssigned(array $permissions)
{
@ -78,6 +82,8 @@ abstract class SubuserRequest extends ClientApiRequest
* Returns the currently authenticated user's permissions.
*
* @return array
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function currentUserPermissions(): array
{
@ -88,7 +94,7 @@ abstract class SubuserRequest extends ClientApiRequest
try {
$model = $repository->findFirstWhere([
['server_id', $this->route()->parameter('server')->id],
['user_id' => $this->user()->id],
['user_id', $this->user()->id],
]);
} catch (RecordNotFoundException $exception) {
return [];
@ -109,6 +115,7 @@ abstract class SubuserRequest extends ClientApiRequest
*
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function endpointSubuser()
{