1
0
mirror of https://github.com/pcvolkmer/arsnova-client.git synced 2025-07-01 14:32:54 +00:00

feat: show disabled room or feedback in example

This commit is contained in:
2024-12-26 18:19:07 +01:00
parent 4ea557894a
commit 813f1a2d9c
2 changed files with 25 additions and 10 deletions

View File

@ -199,7 +199,7 @@ pub struct RoomInfo {
impl RoomInfo {
/// Indicates if room is closed
pub fn is_closes(&self) -> bool {
pub fn is_closed(&self) -> bool {
self.closed
}
@ -212,7 +212,7 @@ impl RoomInfo {
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct RoomInfoSettings {
pub feedback_locked: bool
pub feedback_locked: bool,
}
#[derive(Deserialize, Clone, Debug)]