add: check for ip bans

This commit is contained in:
trisua 2025-07-25 18:33:16 -04:00
parent 06b0aa0b4c
commit 70adae5b66
9 changed files with 84 additions and 47 deletions

View file

@ -13,6 +13,9 @@ pub struct Entry {
pub content: String,
#[serde(default)]
pub metadata: String,
/// The IP address of the last editor of the entry.
#[serde(default)]
pub last_edit_from: String,
}
#[derive(Serialize, Deserialize, PartialEq, Eq)]