mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
Add deprecation notices
This commit is contained in:
parent
2caf0558de
commit
9da58beccf
@ -18,6 +18,10 @@ class Component extends BaseComponent {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
|
* @deprecated In earlier versions of the application, JWT were signed by a synchronous encryption algorithm.
|
||||||
|
* Now asynchronous encryption is used instead, and this logic is saved for a transitional period.
|
||||||
|
* I think it can be safely removed, but I'll not do it yet, because at the time of writing the comment
|
||||||
|
* there were enough changes in the code already.
|
||||||
*/
|
*/
|
||||||
public $hmacKey;
|
public $hmacKey;
|
||||||
|
|
||||||
|
@ -25,6 +25,10 @@ use yii\db\ActiveRecord;
|
|||||||
* Behaviors:
|
* Behaviors:
|
||||||
* @mixin TimestampBehavior
|
* @mixin TimestampBehavior
|
||||||
* @mixin PrimaryKeyValueBehavior
|
* @mixin PrimaryKeyValueBehavior
|
||||||
|
*
|
||||||
|
* @deprecated This table is no longer used to store authorization information in Minecraft.
|
||||||
|
* In time it will be empty (see the cleanup console command) and when it does, this model,
|
||||||
|
* the table in the database and everything related to the old logic can be removed.
|
||||||
*/
|
*/
|
||||||
class MinecraftAccessKey extends ActiveRecord {
|
class MinecraftAccessKey extends ActiveRecord {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user