From 29976dfe30565d822e97d06e92850ceda378f04a Mon Sep 17 00:00:00 2001 From: Michael Olund Date: Wed, 30 Sep 2020 10:22:15 -0700 Subject: [PATCH] Troubleshooting 403 errors with RetrieveUpdateDestroyAPIView that only happen on OpenShift #4 --- edivorce/apps/core/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edivorce/apps/core/urls.py b/edivorce/apps/core/urls.py index 5d4f19ae..c3307f83 100644 --- a/edivorce/apps/core/urls.py +++ b/edivorce/apps/core/urls.py @@ -8,7 +8,7 @@ urlpatterns = [ url(r'^api/response$', api.UserResponseHandler.as_view()), url(r'^api/documents/$', api.DocumentCreateView.as_view(), name='documents'), # path('api/documents///', api.DocumentMetaDataView.as_view(), name='documents-meta'), - path('api/documents/////', api.DocumentView.as_view(), name='document'), + path('api/documents///x//', api.DocumentView.as_view(), name='document'), path('api/documents//', api.get_document_file_by_key, name='document_by_key'), # url(r'^login/headers$', system.headers),