Browse Source

fix(jira): Add trailing slash to UI hook URLs (#33439)

Colleen O'Rourke 2 years ago
parent
commit
9c5df74302
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/sentry/integrations/jira/webhooks/descriptor.py

+ 2 - 2
src/sentry/integrations/jira/webhooks/descriptor.py

@@ -38,12 +38,12 @@ class JiraDescriptorEndpoint(Endpoint):
                 "apiVersion": 1,
                 "modules": {
                     "postInstallPage": {
-                        "url": "/extensions/jira/ui-hook",
+                        "url": "/extensions/jira/ui-hook/",
                         "name": {"value": "Configure Sentry Add-on"},
                         "key": "post-install-sentry",
                     },
                     "configurePage": {
-                        "url": "/extensions/jira/ui-hook",
+                        "url": "/extensions/jira/ui-hook/",
                         "name": {"value": "Configure Sentry Add-on"},
                         "key": "configure-sentry",
                     },