Separated laravel app to its own folder (#540)
This commit is contained in:
23
api/app/Integrations/Handlers/WebhookIntegration.php
Normal file
23
api/app/Integrations/Handlers/WebhookIntegration.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Integrations\Handlers;
|
||||
|
||||
class WebhookIntegration extends AbstractIntegrationHandler
|
||||
{
|
||||
public static function getValidationRules(): array
|
||||
{
|
||||
return [
|
||||
'webhook_url' => 'required|url'
|
||||
];
|
||||
}
|
||||
|
||||
protected function getWebhookUrl(): ?string
|
||||
{
|
||||
return $this->integrationData->webhook_url;
|
||||
}
|
||||
|
||||
protected function shouldRun(): bool
|
||||
{
|
||||
return !is_null($this->getWebhookUrl()) && parent::shouldRun();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user