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
210 B
Python
Raw Normal View History

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