Skip to content

Commit

Permalink
Added a name to the postmark route.
Browse files Browse the repository at this point in the history
  • Loading branch information
citricguy committed Dec 22, 2024
1 parent bc0dd14 commit 988034b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PostmarkWebhooksServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ public function register()
private function registerRoutes(): void
{
Route::group($this->routeConfiguration(), function () {
Route::post(config('postmark-webhooks.webhook_path'), ProcessPostmarkWebhookController::class);
Route::post(config('postmark-webhooks.webhook_path'), ProcessPostmarkWebhookController::class)
->name('postmark-webhooks.process-webhook');
});
}

Expand Down

0 comments on commit 988034b

Please sign in to comment.