51 lines
1.9 KiB
Python
51 lines
1.9 KiB
Python
"""qrtr_services URL Configuration
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/2.2/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import include, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
from django.contrib import admin
|
|
from django.urls import include, path
|
|
from rest_framework import routers
|
|
from user.views import (UserViewSet,
|
|
GroupViewSet,
|
|
)
|
|
from qrtr_account.views import (AccountViewSet,
|
|
BankViewSet,
|
|
InstitutionViewSet,
|
|
TransactionViewSet,
|
|
ConnectionViewSet)
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'users', UserViewSet)
|
|
router.register(r'groups', GroupViewSet)
|
|
router.register(r'accounts',AccountViewSet)
|
|
router.register(r'banks',BankViewSet)
|
|
router.register(r'institutions',InstitutionViewSet)
|
|
router.register(r'transactions',TransactionViewSet)
|
|
router.register(r'connections',ConnectionViewSet)
|
|
|
|
# Wire up our API using automatic URL routing.
|
|
# Additionally, we include login URLs for the browsable API.
|
|
|
|
apipatterns = [
|
|
path('', include(router.urls)),
|
|
path('auth/', include('rest_framework.urls', namespace='rest_framework'), name='auth'),
|
|
path('auth/registration/', include('rest_auth.registration.urls'), name='register'),
|
|
]
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('api/v1/', include(apipatterns), name='api'),
|
|
]
|