Browse Source

[slack] Change Slack URLs by adding /desktop (#2096)

- Fixes `no permission to access Slack application` error when creating a gist
Harsh Gupta 4 years ago
parent
commit
9aaab2c0b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/core/src/desktop/urls.py

+ 1 - 1
desktop/core/src/desktop/urls.py

@@ -277,5 +277,5 @@ if is_oidc_configured():
 # Slack botserver URLs
 if SLACK.IS_ENABLED.get():
   urlpatterns += [
-    re_path(r'^slack/', include('desktop.lib.botserver.urls')),
+    re_path(r'^desktop/slack/', include('desktop.lib.botserver.urls')),
   ]