add: communities is_forum

This commit is contained in:
trisua 2025-08-02 17:29:26 -04:00
parent 9a128a3f0c
commit 1f545a0b21
9 changed files with 52 additions and 4 deletions

View file

@ -344,6 +344,12 @@ pub struct UserSettings {
/// Will also revoke access to their respective pages.
#[serde(default)]
pub hide_social_follows: bool,
/// The signature automatically attached to new mail letters.
#[serde(default)]
pub mail_signature: String,
/// The signature automatically attached to new forum posts.
#[serde(default)]
pub forum_signature: String,
}
#[derive(Clone, Debug, Serialize, Deserialize, Default)]