Skip to content

Commit

Permalink
fix: Disable/enable space chat - EXO-67787 . (#720)
Browse files Browse the repository at this point in the history
Before this change, when send messages in spacesX room and in spaceX settings disable chat and refresh, chat is enabled after refresh. After this change, chat remains disabled after refresh.
  • Loading branch information
akhanfir authored and exo-swf committed Mar 4, 2024
1 parent 381cbd3 commit f20428d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,10 @@ protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws S
deleteTeamRoom(req, resp);
break;
}
case "/updateRoomEnabled": {
setRoomEnabled(req, resp);
break;
}
default:
writeTextResponse(resp, null, HttpStatus.SC_NOT_FOUND);
}
Expand Down

0 comments on commit f20428d

Please sign in to comment.