debug5
This commit is contained in:
17
chat/consumers.py
Normal file
17
chat/consumers.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import json
|
||||
|
||||
from channels.generic.websocket import WebsocketConsumer
|
||||
|
||||
|
||||
class ChatConsumer(WebsocketConsumer):
|
||||
def connect(self):
|
||||
self.accept()
|
||||
|
||||
def disconnect(self, close_code):
|
||||
pass
|
||||
|
||||
def receive(self, text_data):
|
||||
text_data_json = json.loads(text_data)
|
||||
message = text_data_json["message"]
|
||||
|
||||
self.send(text_data=json.dumps({"message": message}))
|
||||
Reference in New Issue
Block a user