feat: add teleport

This commit is contained in:
Evan Carroll 2026-01-19 11:48:12 -06:00
parent 226c2e02b5
commit 32e5e42462
11 changed files with 603 additions and 16 deletions

View file

@ -489,6 +489,7 @@ pub struct Realm {
pub thumbnail_path: Option<String>,
pub max_users: i32,
pub allow_guest_access: bool,
pub allow_user_teleport: bool,
pub default_scene_id: Option<Uuid>,
pub member_count: i32,
pub current_user_count: i32,
@ -516,6 +517,7 @@ pub struct CreateRealmRequest {
pub is_nsfw: bool,
pub max_users: i32,
pub allow_guest_access: bool,
pub allow_user_teleport: bool,
pub theme_color: Option<String>,
}
@ -1361,6 +1363,7 @@ pub struct RealmDetail {
pub thumbnail_path: Option<String>,
pub max_users: i32,
pub allow_guest_access: bool,
pub allow_user_teleport: bool,
pub member_count: i32,
pub current_user_count: i32,
pub created_at: DateTime<Utc>,
@ -1377,6 +1380,7 @@ pub struct UpdateRealmRequest {
pub is_nsfw: bool,
pub max_users: i32,
pub allow_guest_access: bool,
pub allow_user_teleport: bool,
pub theme_color: Option<String>,
}