Skip to content

Commit

Permalink
Fix the authprofile url
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Jan 17, 2024
1 parent fe0bcbe commit 35d7104
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datalab/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"""
from django.contrib import admin
from django.urls import path, re_path, include
from django.conf.urls import url
from rest_framework_nested import routers
import ocs_authentication.auth_profile.urls as authprofile_urls

Expand All @@ -37,5 +36,5 @@
path('admin/', admin.site.urls),
re_path(r'^api/', include(api_urlpatterns)),
path('api/available_operations/', OperationOptionsApiView.as_view(), name='available_operations'),
url(r'^authprofile/', include(authprofile_urls))
re_path(r'^authprofile/', include(authprofile_urls)),
]

0 comments on commit 35d7104

Please sign in to comment.