feat: add api

This commit is contained in:
Herculino Trotta
2024-10-09 22:30:48 -03:00
parent 520645b752
commit a918b4ae7c
3 changed files with 14 additions and 3 deletions
+1
View File
@@ -4,6 +4,7 @@ from . import views
urlpatterns = [
path("monthly/", views.index, name="monthly_index"),
path("", views.index, name="monthly_index"),
path(
"monthly/<int:month>/<int:year>/transactions/list/",
views.transactions_list,
+1 -2
View File
@@ -1,6 +1,5 @@
from django.urls import path
from . import views
import apps.transactions.views as views
urlpatterns = [
path(