diff options
author | Christian Tietze <ctietze@noreply.codeberg.org> | 2022-11-26 11:07:24 +0000 |
---|---|---|
committer | Christian Tietze <me@christiantietze.de> | 2022-11-26 13:02:57 +0100 |
commit | e17e2ecd417864c725fe5f182a25cf3024251263 (patch) | |
tree | 604bb33391b6c9c4b16a64e6184de88fd34a7130 /lisp | |
parent | 8ee5b29c10a128b8268ddac82c96154d9b0208c1 (diff) |
add mastodon-toot--scheduled-at buffer-local variable to optionally schedule posts
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-toot.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index c99f088..eefceda 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -163,6 +163,10 @@ This is determined by the account setting on the server. To change the setting on the server, see `mastodon-toot--set-default-visibility'.") +(defvar-local mastodon-toot--scheduled-at nil + "An ISO 8601 timestamp that declares when the post should be published. +Should be at least 5 minutes into the future.") + (defvar-local mastodon-toot--media-attachments nil "A list of the media attachments of the toot being composed.") @@ -686,7 +690,8 @@ instance to edit a toot." ("sensitive" . ,(when mastodon-toot--content-nsfw (symbol-name t))) ("spoiler_text" . ,spoiler) - ("language" . ,mastodon-toot--language))) + ("language" . ,mastodon-toot--language) + ("scheduled_at" . ,mastodon-toot--scheduled-at))) (args-media (when mastodon-toot--media-attachments (mastodon-http--build-array-params-alist "media_ids[]" |