]> BookStack Code Mirror - bookstack/blobdiff - database/factories/Actions/WebhookFactory.php
Added active toggle to webhooks
[bookstack] / database / factories / Actions / WebhookFactory.php
index a18ffbbc8b6a7e6b279a3a4a3c251541b6018053..1230d49d11291bf7c273623e83dbbf3ea6cce0ff 100644 (file)
@@ -20,6 +20,7 @@ class WebhookFactory extends Factory
         return [
             'name' => 'My webhook for ' . $this->faker->country(),
             'endpoint' => $this->faker->url,
+            'active' => true,
         ];
     }
 }