fix lint
This commit is contained in:
@ -1,10 +1,11 @@
|
||||
"""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
|
||||
from passbook.audit.api.events import EventViewSet
|
||||
|
||||
router = routers.DefaultRouter()
|
||||
router.register('core/applications', ApplicationViewSet)
|
||||
@ -12,5 +13,4 @@ router.register('core/invitations', InvitationViewSet)
|
||||
router.register('core/groups', GroupViewSet)
|
||||
router.register('core/users', UserViewSet)
|
||||
router.register('audit/events', EventViewSet)
|
||||
# router.register('accounts', AccountViewSet)
|
||||
urlpatterns = router.urls
|
||||
|
Reference in New Issue
Block a user