fedimovies/src/activitypub/vocabulary.rs

20 lines
485 B
Rust
Raw Normal View History

2021-04-09 00:22:17 +00:00
// Activity types
pub const ACCEPT: &str = "Accept";
pub const CREATE: &str = "Create";
pub const FOLLOW: &str = "Follow";
2021-10-29 19:21:26 +00:00
pub const LIKE: &str = "Like";
pub const REJECT: &str = "Reject";
2021-04-09 00:22:17 +00:00
pub const UNDO: &str = "Undo";
pub const UPDATE: &str = "Update";
// Actor types
pub const PERSON: &str = "Person";
// Object types
pub const DOCUMENT: &str = "Document";
pub const IMAGE: &str = "Image";
pub const NOTE: &str = "Note";
2021-09-22 16:32:44 +00:00
// Misc
2021-09-17 12:36:24 +00:00
pub const PROPERTY_VALUE: &str = "PropertyValue";