fix SecurityKeyFactory

This commit is contained in:
Matthew Penner 2022-10-31 13:42:49 -06:00
parent 940c899eab
commit aa380d4c0d
No known key found for this signature in database

View file

@ -3,7 +3,6 @@
namespace Database\Factories;
use Ramsey\Uuid\Uuid;
use Pterodactyl\Models\User;
use Pterodactyl\Models\SecurityKey;
use Webauthn\TrustPath\EmptyTrustPath;
use Illuminate\Database\Eloquent\Factories\Factory;
@ -24,15 +23,11 @@ class SecurityKeyFactory extends Factory
{
return [
'uuid' => Uuid::uuid4()->toString(),
'user_id' => User::factory(),
'name' => $this->faker->word,
'type' => 'public-key',
'transports' => [],
'attestation_type' => 'none',
'trust_path' => new EmptyTrustPath(),
'user_handle' => function (array $attributes) {
return User::find($attributes['user_id'])->uuid;
},
'counter' => 0,
];
}