mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-05 02:31:12 +00:00
remove param
This commit is contained in:
parent
ca89a4f854
commit
8d545651a9
1 changed files with 2 additions and 2 deletions
|
@ -279,11 +279,11 @@ export class LemmyHttp {
|
||||||
*
|
*
|
||||||
* `HTTP.GET /account/settings`
|
* `HTTP.GET /account/settings`
|
||||||
*/
|
*/
|
||||||
myUser(form: any, options?: RequestOptions) {
|
getMyUser(options?: RequestOptions) {
|
||||||
return this.#wrapper<object, MyUserInfo>(
|
return this.#wrapper<object, MyUserInfo>(
|
||||||
HttpType.Get,
|
HttpType.Get,
|
||||||
"/account/settings",
|
"/account/settings",
|
||||||
form,
|
{},
|
||||||
options,
|
options,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue