feat(api): add API endpoints to add DCA entries and strategies

This commit is contained in:
Herculino Trotta
2025-01-05 10:54:31 -03:00
parent 6f69f15474
commit 8efa087aee
5 changed files with 124 additions and 0 deletions
+2
View File
@@ -13,6 +13,8 @@ router.register(r"account-groups", views.AccountGroupViewSet)
router.register(r"accounts", views.AccountViewSet)
router.register(r"currencies", views.CurrencyViewSet)
router.register(r"exchange-rates", views.ExchangeRateViewSet)
router.register(r"dca/strategies", views.DCAStrategyViewSet)
router.register(r"dca/entries", views.DCAEntryViewSet)
urlpatterns = [
path("", include(router.urls)),