add message

This commit is contained in:
baoliang 2020-12-05 14:51:51 +08:00
parent 361f25c4be
commit b244443dc1
1 changed files with 8 additions and 0 deletions

View File

@ -109,3 +109,11 @@ def get_task(request):
result['added'] = task.added.strftime("%Y-%m-%d %H:%M:%S")
return JsonResponse({'status': 'success', 'message': result})
@csrf_exempt
def create_test_task(request):
# if request.method == 'GET':
# return HttpResponse(status=405)
# channel_layer = get_channel_layer()
# async_to_sync(channel_layer.group_send)(
# "testroom", {"type": "chat.message", "message": "helo"})
return JsonResponse({'status': 'success'})