mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-29 07:41:12 +00:00
Forgot to add the websocket
This commit is contained in:
parent
cf918cf0f4
commit
2d5945d896
1 changed files with 5 additions and 0 deletions
|
@ -40,6 +40,7 @@ import {
|
|||
GetModlog,
|
||||
GetSite,
|
||||
GetSiteConfig,
|
||||
ResolveObject,
|
||||
SaveSiteConfig,
|
||||
Search,
|
||||
TransferSite,
|
||||
|
@ -267,6 +268,10 @@ export class LemmyWebsocket {
|
|||
return wrapper(UserOperation.Search, form);
|
||||
}
|
||||
|
||||
resolveObject(form: ResolveObject) {
|
||||
return wrapper(UserOperation.ResolveObject, form);
|
||||
}
|
||||
|
||||
markAllAsRead(form: MarkAllAsRead) {
|
||||
return wrapper(UserOperation.MarkAllAsRead, form);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue