mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-03 14:23:42 +08:00
dbd4281ae8
To allow easy temporary de-activation without deletion or other workarounds. Updated tests to cover.
27 lines
512 B
PHP
27 lines
512 B
PHP
<?php
|
|
|
|
namespace Database\Factories\Actions;
|
|
|
|
use BookStack\Actions\Webhook;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class WebhookFactory extends Factory
|
|
{
|
|
|
|
protected $model = Webhook::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'name' => 'My webhook for ' . $this->faker->country(),
|
|
'endpoint' => $this->faker->url,
|
|
'active' => true,
|
|
];
|
|
}
|
|
}
|