mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-05 02:31:12 +00:00
fix path
This commit is contained in:
parent
292aabefbf
commit
fc958b98a4
1 changed files with 2 additions and 2 deletions
|
@ -1818,12 +1818,12 @@ export class LemmyHttp {
|
||||||
/**
|
/**
|
||||||
* Block an instance as user.
|
* Block an instance as user.
|
||||||
*
|
*
|
||||||
* `HTTP.Post /account/block_instance`
|
* `HTTP.Post /account/block/instance`
|
||||||
*/
|
*/
|
||||||
userBlockInstance(form: UserBlockInstanceParams, options?: RequestOptions) {
|
userBlockInstance(form: UserBlockInstanceParams, options?: RequestOptions) {
|
||||||
return this.#wrapper<UserBlockInstanceParams, SuccessResponse>(
|
return this.#wrapper<UserBlockInstanceParams, SuccessResponse>(
|
||||||
HttpType.Post,
|
HttpType.Post,
|
||||||
"/account/block_instance",
|
"/account/block/instance",
|
||||||
form,
|
form,
|
||||||
options,
|
options,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue