(self, request: Request, workspace_id: str, application_id: str)
| 132 | CompareConstants.AND), |
| 133 | RoleConstants.WORKSPACE_MANAGE.get_workspace_role()) |
| 134 | def get(self, request: Request, workspace_id: str, application_id: str): |
| 135 | return result.success(OpenChatSerializers( |
| 136 | data={'workspace_id': workspace_id, 'application_id': application_id, |
| 137 | 'chat_user_id': str(uuid.uuid7()), 'chat_user_type': ChatUserType.ANONYMOUS_USER, |
| 138 | 'debug': True}).open()) |
| 139 | |
| 140 | |
| 141 | class ChatView(APIView): |
no test coverage detected