Fix 403 error on not exists application.

Remove countUsers from minecraft server application type.
This commit is contained in:
ErickSkrauch
2018-03-25 22:21:22 +03:00
parent f3f53e752d
commit 4ee8544355
3 changed files with 5 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ class OauthClientOwnerTest extends TestCase {
$this->assertFalse($rule->execute('token', $item, []));
$this->assertTrue($rule->execute('token', $item, ['clientId' => 'admin-oauth-client']));
$this->assertFalse($rule->execute('token', $item, ['clientId' => 'not-exists-client']));
$this->assertTrue($rule->execute('token', $item, ['clientId' => 'not-exists-client']));
$account->id = 2;
$this->assertFalse($rule->execute('token', $item, ['clientId' => 'admin-oauth-client']));
$item->name = P::VIEW_OWN_OAUTH_CLIENTS;