2021-12-07 15:55:11 +01:00
|
|
|
<?php
|
|
|
|
|
2023-05-24 10:06:15 +02:00
|
|
|
namespace Database\Factories\Activity\Models;
|
2021-12-07 15:55:11 +01:00
|
|
|
|
2023-05-17 18:56:55 +02:00
|
|
|
use BookStack\Activity\Models\Webhook;
|
2021-12-07 15:55:11 +01:00
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class WebhookFactory extends Factory
|
|
|
|
{
|
2021-12-10 15:54:58 +01:00
|
|
|
protected $model = Webhook::class;
|
|
|
|
|
2021-12-07 15:55:11 +01:00
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
2021-12-18 12:43:05 +01:00
|
|
|
'name' => 'My webhook for ' . $this->faker->country(),
|
2023-01-21 21:50:04 +01:00
|
|
|
'endpoint' => $this->faker->url(),
|
2021-12-18 12:43:05 +01:00
|
|
|
'active' => true,
|
2022-01-03 20:42:48 +01:00
|
|
|
'timeout' => 3,
|
2021-12-07 15:55:11 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|