add: ability to ip block users from their profile

This commit is contained in:
trisua 2025-06-28 13:15:37 -04:00
parent a799c777ea
commit 0163391380
12 changed files with 241 additions and 20 deletions

View file

@ -192,6 +192,15 @@ pub struct UserSettings {
/// Custom CSS input.
#[serde(default)]
pub theme_custom_css: String,
/// The color of an online online indicator.
#[serde(default)]
pub theme_color_online: String,
/// The color of an idle online indicator.
#[serde(default)]
pub theme_color_idle: String,
/// The color of an offline online indicator.
#[serde(default)]
pub theme_color_offline: String,
#[serde(default)]
pub disable_other_themes: bool,
#[serde(default)]