add: hide_social_follows setting

This commit is contained in:
trisua 2025-07-25 13:39:34 -04:00
parent e78c43ab62
commit a337e0c7c1
11 changed files with 179 additions and 96 deletions

View file

@ -337,6 +337,10 @@ pub struct UserSettings {
/// Biography shown on `profile/private.lisp` page.
#[serde(default)]
pub private_biography: String,
/// If the followers/following links are hidden from the user's profile.
/// Will also revoke access to their respective pages.
#[serde(default)]
pub hide_social_follows: bool,
}
#[derive(Clone, Debug, Serialize, Deserialize, Default)]