ruwuma/src/r0/room.rs
2019-12-24 22:45:16 +01:00

17 lines
487 B
Rust

//! Endpoints for room creation.
pub mod create_room;
pub mod get_room_event;
use serde::{Deserialize, Serialize};
/// Whether or not a newly created room will be listed in the room directory.
#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum Visibility {
/// Indicates that the room will be shown in the published room list.
Public,
/// Indicates that the room will not be shown in the published room list.
Private,
}