Add the "endorsements" endpoints from mastodon 2.5.0

Closes #74
This commit is contained in:
Paul Woolcock
2018-09-14 18:16:56 -04:00
parent 7de1bdc009
commit 1f0ba1846c
4 changed files with 21 additions and 1 deletions
+6
View File
@@ -22,4 +22,10 @@ pub struct Relationship {
pub domain_blocking: bool,
/// Whether the user's reblogs will show up in the home timeline
pub showing_reblogs: bool,
/// Whether the user is currently endorsing the account
///
/// This field is not techincally nullable with mastodon >= 2.5.0, but
/// making it `Option<bool>` here means we shouldn't get deser errors when
/// making calls to pleroma or mastodon<2.5.0 instances
pub endorsed: bool,
}