Introduce Invoice/Payment ledger models, $10/mo settings-backed pricing, hosted Checkout + signed webhooks, Django admin, and authenticated list APIs.
8 lines
175 B
Python
8 lines
175 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class FinanceConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "finance"
|
|
verbose_name = "Finance"
|