You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2021/06/09 17:22:05 UTC

[airavata-django-portal] branch develop updated: AIRAVATA-3455 Fixing basename argument

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/develop by this push:
     new b7eb92b  AIRAVATA-3455 Fixing basename argument
b7eb92b is described below

commit b7eb92bb2e75442c687d1f1608fad8f77abc0ad9
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Wed Jun 9 13:21:46 2021 -0400

    AIRAVATA-3455 Fixing basename argument
---
 django_airavata/apps/auth/urls.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django_airavata/apps/auth/urls.py b/django_airavata/apps/auth/urls.py
index 5d1e631..ba343f4 100644
--- a/django_airavata/apps/auth/urls.py
+++ b/django_airavata/apps/auth/urls.py
@@ -5,7 +5,7 @@ from rest_framework import routers
 from . import views
 
 router = routers.DefaultRouter()
-router.register(r'users', views.UserViewSet, base_name='user')
+router.register(r'users', views.UserViewSet, basename='user')
 app_name = 'django_airavata_auth'
 urlpatterns = [
     url(r'^', include(router.urls)),