Add chat models and scaffold pages/posts apps

Implemented comprehensive models for chat functionality, including Chat, Message, MessageHistory, MessageReaction, and MessageFile. Updated ChatConsumer to enforce authentication and improve message handling. Added initial scaffolding for 'pages' and 'posts' Django apps with basic files.
This commit is contained in:
2025-12-26 04:48:39 +01:00
parent 00271e59e4
commit deb853b564
16 changed files with 232 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class PostsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'posts'