Rewrite of the authentication and authorization system
This commit is contained in:
20
app/Core/Security/PreAuthenticationProviderInterface.php
Normal file
20
app/Core/Security/PreAuthenticationProviderInterface.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Kanboard\Core\Security;
|
||||
|
||||
/**
|
||||
* Pre-Authentication Provider Interface
|
||||
*
|
||||
* @package security
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
interface PreAuthenticationProviderInterface extends AuthenticationProviderInterface
|
||||
{
|
||||
/**
|
||||
* Get user object
|
||||
*
|
||||
* @access public
|
||||
* @return UserProviderInterface
|
||||
*/
|
||||
public function getUser();
|
||||
}
|
||||
Reference in New Issue
Block a user