+ Telegram bot: sign up, sign in, notifications + Anonymous users can't see yuan_rate_commission * Only logged in customers can create/update orders * Customer info migrated to separate User model * Renamed legacy fields in serializers * Cleanup in API classes
10 lines
199 B
Python
10 lines
199 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AccountConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'account'
|
|
|
|
def ready(self):
|
|
import account.signals
|