mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-29 15:51: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,
|
GetModlog,
|
||||||
GetSite,
|
GetSite,
|
||||||
GetSiteConfig,
|
GetSiteConfig,
|
||||||
|
ResolveObject,
|
||||||
SaveSiteConfig,
|
SaveSiteConfig,
|
||||||
Search,
|
Search,
|
||||||
TransferSite,
|
TransferSite,
|
||||||
|
@ -267,6 +268,10 @@ export class LemmyWebsocket {
|
||||||
return wrapper(UserOperation.Search, form);
|
return wrapper(UserOperation.Search, form);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resolveObject(form: ResolveObject) {
|
||||||
|
return wrapper(UserOperation.ResolveObject, form);
|
||||||
|
}
|
||||||
|
|
||||||
markAllAsRead(form: MarkAllAsRead) {
|
markAllAsRead(form: MarkAllAsRead) {
|
||||||
return wrapper(UserOperation.MarkAllAsRead, form);
|
return wrapper(UserOperation.MarkAllAsRead, form);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue