JMAP Registry API implementation - part 7

This commit is contained in:
mdecimus
2026-03-02 19:26:59 +01:00
parent 9ccc2ed6f0
commit 08f1a8013a
33 changed files with 1843 additions and 927 deletions

View File

@@ -220,6 +220,10 @@ impl<T: Property> SetError<T> {
Self::new(SetErrorType::InvalidProperties)
}
pub fn invalid_patch() -> Self {
Self::new(SetErrorType::InvalidPatch)
}
pub fn forbidden() -> Self {
Self::new(SetErrorType::Forbidden)
}