feat(api): add RecurringTransaction and InstallmentPlan endpoints

This commit is contained in:
Herculino Trotta
2025-01-05 11:13:23 -03:00
parent 091f73bf8d
commit 1b47c12a22
3 changed files with 71 additions and 8 deletions
+1
View File
@@ -9,6 +9,7 @@ router.register(r"categories", views.TransactionCategoryViewSet)
router.register(r"tags", views.TransactionTagViewSet)
router.register(r"entities", views.TransactionEntityViewSet)
router.register(r"installment-plans", views.InstallmentPlanViewSet)
router.register(r"recurring-transactions", views.RecurringTransactionViewSet)
router.register(r"account-groups", views.AccountGroupViewSet)
router.register(r"accounts", views.AccountViewSet)
router.register(r"currencies", views.CurrencyViewSet)