diff --git a/database/Factories/SecurityKeyFactory.php b/database/Factories/SecurityKeyFactory.php index 58a69bef6..6938b6727 100644 --- a/database/Factories/SecurityKeyFactory.php +++ b/database/Factories/SecurityKeyFactory.php @@ -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, ]; }