8 lines
336 B
Python
8 lines
336 B
Python
from rest_framework.routers import DefaultRouter
|
|
from .views import InvoiceViewSet, InvoiceTransactionEntryViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'invoices', InvoiceViewSet, basename='invoice')
|
|
router.register(r'transaction', InvoiceTransactionEntryViewSet, basename='financial-transaction-entry')
|
|
|
|
urlpatterns = router.urls |