Skip to content

Commit

Permalink
Add authprofile url
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Jan 17, 2024
1 parent ffdbb80 commit fe0bcbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions datalab/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"""
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

from datalab.datalab_session.viewsets import DataSessionViewSet, DataOperationViewSet
from datalab.datalab_session.views import OperationOptionsApiView
Expand All @@ -35,4 +37,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))
]

0 comments on commit fe0bcbe

Please sign in to comment.