Move legacy Filter type to mod v1; publish fields
This commit is contained in:
parent
acef484b73
commit
6ee2f277d8
|
@ -1,16 +1,29 @@
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
mod v1 {
|
||||||
|
pub use super::FilterContext;
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
use time::{serde::iso8601, OffsetDateTime};
|
use time::{serde::iso8601, OffsetDateTime};
|
||||||
|
|
||||||
/// Represents a single Filter
|
/// Represents a single Filter
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
|
||||||
pub struct Filter {
|
pub struct Filter {
|
||||||
id: String,
|
/// The ID of the Filter in the database.
|
||||||
phrase: String,
|
pub id: String,
|
||||||
context: Vec<FilterContext>,
|
/// The text to be filtered.
|
||||||
|
pub phrase: String,
|
||||||
|
/// The contexts in which the filter should be applied.
|
||||||
|
pub context: Vec<FilterContext>,
|
||||||
|
/// When the filter should no longer be applied.
|
||||||
|
///
|
||||||
|
/// `None` indicates that the filter does not expire.
|
||||||
#[serde(with = "iso8601::option")]
|
#[serde(with = "iso8601::option")]
|
||||||
expires_at: Option<OffsetDateTime>,
|
pub expires_at: Option<OffsetDateTime>,
|
||||||
irreversible: bool,
|
/// Should matching entities in home and notifications be dropped by the server?
|
||||||
whole_word: bool,
|
pub irreversible: bool,
|
||||||
|
/// Should the filter consider word boundaries?
|
||||||
|
pub whole_word: bool,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Represents the various types of Filter contexts
|
/// Represents the various types of Filter contexts
|
||||||
|
|
Loading…
Reference in New Issue