mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-25 22:01: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,
|
||||
GetSite,
|
||||
GetSiteConfig,
|
||||
ResolveObject,
|
||||
SaveSiteConfig,
|
||||
Search,
|
||||
TransferSite,
|
||||
|
@ -423,6 +424,13 @@ export class LemmyWebsocket {
|
|||
return wrapper(UserOperation.Search, form);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a non-local / federated object.
|
||||
*/
|
||||
resolveObject(form: ResolveObject) {
|
||||
return wrapper(UserOperation.ResolveObject, form);
|
||||
}
|
||||
|
||||
/**
|
||||
* Mark all replies as read.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue