Files
nexusphp/app/Models/OauthClient.php

21 lines
405 B
PHP
Raw Normal View History

2024-03-17 02:39:26 +08:00
<?php
namespace App\Models;
2024-03-18 02:57:55 +08:00
use Illuminate\Support\Str;
2024-03-17 02:39:26 +08:00
use Laravel\Passport\Client;
class OauthClient extends Client
{
2024-03-18 02:57:55 +08:00
protected static function booted(): void
{
static::creating(function (OauthClient $model) {
$model->secret = Str::random(40);
});
}
2024-03-17 02:39:26 +08:00
public function skipsAuthorization(): bool
{
return (bool)$this->skips_authorization;
}
}