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