diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-18 14:12:59 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-18 18:21:09 +0100 |
commit | e6d2c3ab8cc616799ccff979fa66e3d83c43f9f8 (patch) | |
tree | ea1aea22e607cd2ee74dbb05c93574a6fb932db0 /lisp/mastodon-notifications.el | |
parent | a7af764df9175b72f067db7dfeeb820e48ec9232 (diff) |
factor out mastodon-views.el for minor views
These are currently lists, follow suggestions, filters, scheduled toots,
follow requests, and instance descriptions.
fix remanant tl fun names in views
stray views fun rename in notifs.el
stray views funs in notifs
stray views funs in toot.el
views file commentary
Diffstat (limited to 'lisp/mastodon-notifications.el')
-rw-r--r-- | lisp/mastodon-notifications.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 279361b..27793eb 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -50,7 +50,7 @@ (autoload 'mastodon-tl--spoiler "mastodon-tl.el") (autoload 'mastodon-tl--toot-id "mastodon-tl.el") (autoload 'mastodon-http--get-params-async-json "mastodon-http.el") -(autoload 'mastodon-profile--view-follow-requests "mastodon-profile.el") +(autoload 'mastodon-views--view-follow-requests "mastodon-views") (autoload 'mastodon-tl--reload-timeline-or-profile "mastodon-tl") (autoload 'mastodon-tl--update "mastodon-tl") (autoload 'mastodon-notifications-get "mastodon") @@ -126,7 +126,7 @@ follow-requests view." (mastodon-http--triage response (lambda () (if f-reqs-view-p - (mastodon-profile--view-follow-requests) + (mastodon-views--view-follow-requests) (mastodon-notifications-get)) (message "Follow request of %s (@%s) %s!" name handle (if reject |