aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-05-06 19:21:29 +0200
committermousebot <mousebot@riseup.net>2021-05-06 19:21:29 +0200
commitc5a3c917712283d733971dba2ad39486f82bb6e4 (patch)
tree9b199933ac4451bb263d663c8cd7e60f4c5750ee /lisp/mastodon-tl.el
parent5095797ef32b922d2a624fa6beb970b5e9cf5ca0 (diff)
add delete toot function
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 0b918df..ae21041 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -782,6 +782,17 @@ webapp"
(cdr (assoc 'descendants context))))))
(message "No Thread!"))))
+(defun mastodon-tl--delete-toot ()
+ "Delete user's toot at point synchronously."
+ (interactive)
+ (let* ((id (mastodon-tl--as-string (mastodon-tl--toot-id
+ (mastodon-tl--property 'toot-json))))
+ (url (mastodon-http--api (format "statuses/%s" id))))
+ (let ((response (mastodon-http--delete url)))
+ (mastodon-http--triage response
+ (lambda ()
+ (message "Toot deleted! There may be a delay before it disappears from your profile."))))))
+
(defun mastodon-tl--more ()
"Append older toots to timeline."
(interactive)