33 lines
1.1 KiB
Rust
33 lines
1.1 KiB
Rust
//! Types for the *m.room.join_rules* event.
|
|
|
|
use ruma_events_macros::StateEventContent;
|
|
use serde::{Deserialize, Serialize};
|
|
use strum::{Display, EnumString};
|
|
|
|
/// Describes how users are allowed to join the room.
|
|
#[derive(Clone, Debug, Deserialize, Serialize, StateEventContent)]
|
|
#[ruma_event(type = "m.room.join_rules")]
|
|
pub struct JoinRulesEventContent {
|
|
/// The type of rules used for users wishing to join this room.
|
|
pub join_rule: JoinRule,
|
|
}
|
|
|
|
/// The rule used for users wishing to join this room.
|
|
#[derive(Clone, Copy, Debug, PartialEq, Display, EnumString, Deserialize, Serialize)]
|
|
#[serde(rename_all = "lowercase")]
|
|
#[strum(serialize_all = "lowercase")]
|
|
pub enum JoinRule {
|
|
/// A user who wishes to join the room must first receive an invite to the room from someone
|
|
/// already inside of the room.
|
|
Invite,
|
|
|
|
/// Reserved but not yet implemented by the Matrix specification.
|
|
Knock,
|
|
|
|
/// Reserved but not yet implemented by the Matrix specification.
|
|
Private,
|
|
|
|
/// Anyone can join the room without any prior action.
|
|
Public,
|
|
}
|