mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
First basic OpenID Connect implementation
This commit is contained in:
@ -387,6 +387,7 @@ class AuthTest extends BrowserKitTest
|
||||
$this->assertTrue(auth()->check());
|
||||
$this->assertTrue(auth('ldap')->check());
|
||||
$this->assertTrue(auth('saml2')->check());
|
||||
$this->assertTrue(auth('openid')->check());
|
||||
}
|
||||
|
||||
public function test_login_authenticates_nonadmins_on_default_guard_only()
|
||||
@ -399,6 +400,7 @@ class AuthTest extends BrowserKitTest
|
||||
$this->assertTrue(auth()->check());
|
||||
$this->assertFalse(auth('ldap')->check());
|
||||
$this->assertFalse(auth('saml2')->check());
|
||||
$this->assertFalse(auth('openid')->check());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user