diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-23 17:25:28 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-23 17:25:28 +0100 |
| commit | 064a7906f6c6e18ad4ce5fb5a19e5e3d02144358 (patch) | |
| tree | c7e62f961ab5638aa36b1c669bc49d03939bcc41 /ui/src/components/mod.rs | |
| parent | 807cde3a096a6e87d13a98d2ee78578732b1fb45 (diff) | |
| download | jellything-064a7906f6c6e18ad4ce5fb5a19e5e3d02144358.tar jellything-064a7906f6c6e18ad4ce5fb5a19e5e3d02144358.tar.bz2 jellything-064a7906f6c6e18ad4ce5fb5a19e5e3d02144358.tar.zst | |
user settings page
Diffstat (limited to 'ui/src/components/mod.rs')
| -rw-r--r-- | ui/src/components/mod.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/src/components/mod.rs b/ui/src/components/mod.rs index 15b2ae2..dde77b0 100644 --- a/ui/src/components/mod.rs +++ b/ui/src/components/mod.rs @@ -5,6 +5,7 @@ */ pub mod admin; +pub mod admin_log; pub mod login; pub mod message; pub mod node_card; @@ -12,7 +13,7 @@ pub mod node_list; pub mod node_page; pub mod props; pub mod stats; -pub mod admin_log; +pub mod user; use crate::{ RenderInfo, @@ -22,6 +23,7 @@ use crate::{ message::Message, node_list::NodeList, node_page::{NodePage, Player}, + user::UserSettings, }, }; use jellycommon::{jellyobject::Object, *}; @@ -59,5 +61,8 @@ define! { @if let Some(data) = view.get(VIEW_ADMIN_INFO) { @AdminInfo { ri, data } } + @if let Some(user) = view.get(VIEW_USER_SETTINGS) { + @UserSettings { ri, user } + } } } |