From f172cf7cb55528c513f74e4e535c395a6947f5bc Mon Sep 17 00:00:00 2001 From: RobbeStatik Date: Mon, 17 Apr 2023 17:07:26 +0200 Subject: [PATCH] Added Surveyhero ID to webhook list table header --- src/Commands/SurveyheroWebhookListCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/SurveyheroWebhookListCommand.php b/src/Commands/SurveyheroWebhookListCommand.php index 461d0ca..a88530a 100644 --- a/src/Commands/SurveyheroWebhookListCommand.php +++ b/src/Commands/SurveyheroWebhookListCommand.php @@ -37,7 +37,7 @@ public function handle(): int $surveys = $surveyQuery->get(); foreach ($surveys as $survey) { - $this->comment("Webhooks for survey '$survey->name':"); + $this->comment("Webhooks for survey '$survey->name' ($survey->surveyhero_id):"); /* @var SurveyContract $survey */ try { $webhooks = $this->webhookService->listWebhooks($survey);