from django.urls import path from common.api_helpers.optional_slash_router import optional_slash_path from .views import ( InstallLinkRedirectView, OAuthSlackView, ResetSlackView, SignupRedirectView, SlackEventApiEndpointView, ) urlpatterns = [ # Old urls for handling slack events and interactive messages. Currently used in OSS path("event_api_endpoint/", SlackEventApiEndpointView.as_view()), path("interactive_api_endpoint/", SlackEventApiEndpointView.as_view()), # New urls used in cloud via chatops-proxy v3. optional_slash_path("events", SlackEventApiEndpointView.as_view()), optional_slash_path("interactive", SlackEventApiEndpointView.as_view()), # Trailing / is missing here on purpose. QA the feature if you want to add it. No idea why doesn't it work with it. path("reset_slack", ResetSlackView.as_view(), name="reset-slack"), # Deprecated. path("oauth/", OAuthSlackView.as_view()), path("oauth///", OAuthSlackView.as_view()), path("install_redirect/", InstallLinkRedirectView.as_view()), path("install_redirect///", InstallLinkRedirectView.as_view()), path("signup_redirect/", SignupRedirectView.as_view()), path("signup_redirect///", SignupRedirectView.as_view()), ]