summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Boggs <scott@tams.tech>2023-07-11 03:55:15 -0400
committerGitHub <noreply@github.com>2023-07-11 03:55:15 -0400
commit79f008fc59913b74b7afbbd4c6c6404677d41bdf (patch)
treec4ca2a44b91697da7b4f690c0c445d87c85f7af6
parent7c09814bba8f879d57c7b26fe68e21acb8c68424 (diff)
parenta921b433c17f149a683bb399ccbc371a5f750b16 (diff)
Merge pull request #107 from uniqueNullptr2/uniqueNullptr-add-bookmarks-endpoint
add bookmarks endpoint
-rw-r--r--src/mastodon.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mastodon.rs b/src/mastodon.rs
index 92744ed..1d512a8 100644
--- a/src/mastodon.rs
+++ b/src/mastodon.rs
@@ -56,6 +56,7 @@ impl Mastodon {
paged_routes! {
(get) favourites: "favourites" => Status,
+ (get) bookmarks: "bookmarks" => Status,
(get) blocks: "blocks" => Account,
(get) domain_blocks: "domain_blocks" => String,
(get) follow_requests: "follow_requests" => Account,