Rewrite of the authentication and authorization system
This commit is contained in:
20
app/Core/Security/SessionCheckProviderInterface.php
Normal file
20
app/Core/Security/SessionCheckProviderInterface.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Kanboard\Core\Security;
|
||||
|
||||
/**
|
||||
* Session Check Provider Interface
|
||||
*
|
||||
* @package security
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
interface SessionCheckProviderInterface
|
||||
{
|
||||
/**
|
||||
* Check if the user session is valid
|
||||
*
|
||||
* @access public
|
||||
* @return boolean
|
||||
*/
|
||||
public function isValidSession();
|
||||
}
|
||||
Reference in New Issue
Block a user