mirror of
https://github.com/elyby/accounts.git
synced 2024-11-02 17:03:10 +05:30
113b9f98d8
Добавлен метод getActiveSession Добавлена логика для функции "Разлогинить всех" в форме смены пароля
18 lines
250 B
PHP
18 lines
250 B
PHP
<?php
|
|
namespace api\components\User;
|
|
|
|
use Emarref\Jwt\Claim\AbstractClaim;
|
|
|
|
class SessionIdClaim extends AbstractClaim {
|
|
|
|
const NAME = 'sid';
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function getName() {
|
|
return self::NAME;
|
|
}
|
|
|
|
}
|