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
3d09b41e7f
commit
bda962a9bb
1 changed files with 8 additions and 0 deletions
|
@ -40,6 +40,7 @@ import {
|
||||||
GetModlog,
|
GetModlog,
|
||||||
GetSite,
|
GetSite,
|
||||||
GetSiteConfig,
|
GetSiteConfig,
|
||||||
|
ResolveObject,
|
||||||
SaveSiteConfig,
|
SaveSiteConfig,
|
||||||
Search,
|
Search,
|
||||||
TransferSite,
|
TransferSite,
|
||||||
|
@ -423,6 +424,13 @@ export class LemmyWebsocket {
|
||||||
return wrapper(UserOperation.Search, form);
|
return wrapper(UserOperation.Search, form);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch a non-local / federated object.
|
||||||
|
*/
|
||||||
|
resolveObject(form: ResolveObject) {
|
||||||
|
return wrapper(UserOperation.ResolveObject, form);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mark all replies as read.
|
* Mark all replies as read.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue