mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-05 02:31:12 +00:00
rename mention mark as read
This commit is contained in:
parent
edd0ac9073
commit
60c08ba048
1 changed files with 2 additions and 2 deletions
|
@ -1438,12 +1438,12 @@ export class LemmyHttp {
|
||||||
/**
|
/**
|
||||||
* Mark all replies as read.
|
* Mark all replies as read.
|
||||||
*
|
*
|
||||||
* `HTTP.POST /account/mention/mark_all_as_read`
|
* `HTTP.POST /account/mention/mark_as_read/all`
|
||||||
*/
|
*/
|
||||||
markAllAsRead(options?: RequestOptions) {
|
markAllAsRead(options?: RequestOptions) {
|
||||||
return this.#wrapper<object, GetRepliesResponse>(
|
return this.#wrapper<object, GetRepliesResponse>(
|
||||||
HttpType.Post,
|
HttpType.Post,
|
||||||
"/account/mention/mark_all_as_read",
|
"/account/mention/mark_as_read/all",
|
||||||
{},
|
{},
|
||||||
options,
|
options,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue