|
@@ -61,6 +61,13 @@ public class RoomController{
|
|
|
return new BaseResponse<>(result);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping(value = "/joinFailure", method = RequestMethod.POST)
|
|
|
+ public Object joinFailure(String roomId,String userId)
|
|
|
+ throws Exception {
|
|
|
+ roomService.joinFailure(roomId,userId);
|
|
|
+ return new BaseResponse<>();
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping(value = "/statusSync")
|
|
|
public Object statusSync(@RequestBody String body) throws Exception {
|
|
|
ChannelStateNotify notify = JSONObject.parseObject(body, ChannelStateNotify.class);
|