From 5e97f90f92090593113fb6437a0d5cd8ca4ce7a4 Mon Sep 17 00:00:00 2001 From: David Brodski <129956+kammerjaeger@users.noreply.github.com> Date: Fri, 7 May 2021 23:51:24 -0400 Subject: [PATCH 1/2] Add missing entry for redelivery See: https://gist.github.com/bswinnerton/9ae3b432a8d649fe4890015bd0a86658 --- src/requires-app-auth.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/requires-app-auth.ts b/src/requires-app-auth.ts index 107a9cb27..a8a17a4f3 100644 --- a/src/requires-app-auth.ts +++ b/src/requires-app-auth.ts @@ -1,6 +1,7 @@ const PATHS = [ "/app", "/app/hook/config", + "/app/hook/deliveries", "/app/installations", "/app/installations/{installation_id}", "/app/installations/{installation_id}/access_tokens", From d4faec992f5bc7933c6cea305330b7ef476b1731 Mon Sep 17 00:00:00 2001 From: David Brodski <129956+kammerjaeger@users.noreply.github.com> Date: Mon, 28 Jun 2021 09:24:44 -0400 Subject: [PATCH 2/2] Add two more missing paths for redelivery Co-authored-by: Gregor Martynus <39992+gr2m@users.noreply.github.com> --- src/requires-app-auth.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/requires-app-auth.ts b/src/requires-app-auth.ts index a8a17a4f3..6abac661f 100644 --- a/src/requires-app-auth.ts +++ b/src/requires-app-auth.ts @@ -2,6 +2,8 @@ const PATHS = [ "/app", "/app/hook/config", "/app/hook/deliveries", + "/app/hook/deliveries/{delivery_id}", + "/app/hook/deliveries/{delivery_id}/attempts", "/app/installations", "/app/installations/{installation_id}", "/app/installations/{installation_id}/access_tokens",