-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathurls.py
27 lines (25 loc) · 1.25 KB
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from django.urls import path
from .views import (AccountListAPI,
AccountCreateAPI,
AccountUpdateApi,
AccountDeleteAPI,
TransactionListAPI,
TransactionCreateAPI,
TransactionUpdateApi,
TransactionDeleteAPI)
ledger_patterns = [
path('accounts', AccountListAPI.as_view(), name='accounts_list'),
path('accounts/create', AccountCreateAPI.as_view(), name='accounts_create'),
path('accounts/<int:account_id>/update',
AccountUpdateApi.as_view(), name='accounts_update'),
path('accounts/<int:account_id>/delete',
AccountDeleteAPI.as_view(), name='accounts_delete'),
path('accounts/<int:account_id>/transactions',
TransactionListAPI.as_view(), name='transactions_list'),
path('accounts/<int:account_id>/transactions/create',
TransactionCreateAPI.as_view(), name='transactions_create'),
path('accounts/<int:account_id>/transactions/<int:transaction_id>/update',
TransactionUpdateApi.as_view(), name='transactions_update'),
path('accounts/<int:account_id>/transactions/<int:transaction_id>/delete',
TransactionDeleteAPI.as_view(), name='transactions_delete'),
]