Implement profit sharing system and write tests

This commit is contained in:
2023-03-20 11:06:37 +00:00
parent 8c490d6ee3
commit 9627fb7d41
11 changed files with 411 additions and 4 deletions

View File

@@ -226,6 +226,11 @@ urlpatterns = [
wallets.WalletUpdate.as_view(),
name="wallet_update",
),
path(
"operator_wallets/<str:type>/update/",
wallets.OperatorWalletsUpdate.as_view(),
name="operator_wallets_update",
),
path(
"wallets/<str:type>/delete/<str:pk>/",
wallets.WalletDelete.as_view(),