This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/api/v2/urls.py
Langhammer, Jens 846a86fb62 fix lint
2019-10-28 14:44:46 +01:00

17 lines
631 B
Python

"""api v2 urls"""
from rest_framework import routers
from passbook.audit.api.events import EventViewSet
from passbook.core.api.applications import ApplicationViewSet
from passbook.core.api.groups import GroupViewSet
from passbook.core.api.invitations import InvitationViewSet
from passbook.core.api.users import UserViewSet
router = routers.DefaultRouter()
router.register('core/applications', ApplicationViewSet)
router.register('core/invitations', InvitationViewSet)
router.register('core/groups', GroupViewSet)
router.register('core/users', UserViewSet)
router.register('audit/events', EventViewSet)
urlpatterns = router.urls