rename mention mark as read

This commit is contained in:
Felix Ableitner 2024-12-02 11:34:22 +01:00
parent edd0ac9073
commit 60c08ba048

View file

@ -1438,12 +1438,12 @@ export class LemmyHttp {
/**
* Mark all replies as read.
*
* `HTTP.POST /account/mention/mark_all_as_read`
* `HTTP.POST /account/mention/mark_as_read/all`
*/
markAllAsRead(options?: RequestOptions) {
return this.#wrapper<object, GetRepliesResponse>(
HttpType.Post,
"/account/mention/mark_all_as_read",
"/account/mention/mark_as_read/all",
{},
options,
);