engelmav / codinginenglish

Online learning platform.
https://www.codinginenglish.com
0 stars 0 forks source link

Implement breakout rooms #100

Closed engelmav closed 3 years ago

engelmav commented 3 years ago

Should include:

  1. video
  2. whiteboard
  3. chat

In other words, it's a whole room... a whole Aula.

Tabs on the top could display "main class" and "breakout room name".

We also need a concept of who is in the room.

engelmav commented 3 years ago

CREATE TABLE cie.aula_config ( id INT auto_increment NOT NULL, active_session_id INT NOT NULL, config json NULL, CONSTRAINT aula_config_FK FOREIGN KEY (active_session_id) REFERENCES cie.active_sessions(id), primary key (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

engelmav commented 3 years ago

leaving canvas for another ticket.