Generate recovery tokens when enabling 2FA on an account

This commit is contained in:
Dane Everitt 2020-07-02 21:55:25 -07:00
parent 7ee509d8c2
commit a998b463e3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
6 changed files with 145 additions and 8 deletions

View file

@ -0,0 +1,39 @@
<?php
namespace Pterodactyl\Models;
/**
* @property int $id
* @property int $user_id
* @property string $token
* @property \Carbon\CarbonImmutable $created_at
*
* @property \Pterodactyl\Models\User $user
*/
class RecoveryToken extends Model
{
/**
* There are no updates to this model, only inserts and deletes.
*/
const UPDATED_AT = null;
/**
* @var bool
*/
protected $immutableDates = true;
/**
* @var string[]
*/
public static $validationRules = [
'token' => 'required|string',
];
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function user()
{
return $this->belongsTo(User::class);
}
}