refactor(core): Expand error message for unknown webhook request (#15178)

This commit is contained in:
Iván Ovejero
2025-05-07 14:45:57 +02:00
committed by GitHub
parent 715127fa87
commit c6ceee2bee
3 changed files with 25 additions and 4 deletions

View File

@@ -50,4 +50,8 @@ export class WebhookEntity {
get isDynamic() {
return this.webhookPath.split('/').some((s) => s.startsWith(':'));
}
display() {
return `${this.method} ${this.webhookPath}`;
}
}