This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/userausfall/rest_api/urls.py

7 lines
211 B
Python

from rest_framework import routers
from userausfall.rest_api.views import AccountRequestViewSet
router = routers.DefaultRouter(trailing_slash=False)
router.register(r'account_requests', AccountRequestViewSet)