Closed sreekanthreddybalne closed 1 year ago
Regression introduced in commit https://github.com/djangoflow/django-df-chat/commit/6ca78e273ef4286a77fe9a525e479b93daf66ca5
Due to this the /api/v1/chat/<room_pk>/messages/ endpoint is returning a 403 Forbidden error response.
/api/v1/chat/<room_pk>/messages/
create_user
create_room_and_add_users
async_create_user
async_create_room_and_add_users
Issue
Regression introduced in commit https://github.com/djangoflow/django-df-chat/commit/6ca78e273ef4286a77fe9a525e479b93daf66ca5
Due to this the
/api/v1/chat/<room_pk>/messages/
endpoint is returning a 403 Forbidden error response.Fix
create_user
andcreate_room_and_add_users
, to be used by synchronous test methods.async_create_user
andasync_create_room_and_add_users
, to be used by asynchronous test methods. Mostly used in the testing of websocket communication.