We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9deb8e3 + 96af9f0 commit dd2b7f4Copy full SHA for dd2b7f4
src/Services/WebhookService.php
@@ -18,6 +18,7 @@ public function __construct(Client $client)
18
public function eventRequestApproved(Request $request): bool
19
{
20
$event = $request->server->get('HTTP_X_GITHUB_EVENT');
21
+
22
return $this->eventApproved((string) $event);
23
}
24
@@ -48,6 +49,7 @@ protected function hasValidNodeAndFieldData(array $payload): bool
48
49
protected function hasFieldTemplate(array $payload): bool
50
51
$fieldType = $payload['changes']['field_value']['field_type'] ?? '';
52
53
return view()->exists('github-project::md.fields.'.$fieldType);
54
55
0 commit comments