Merge remote-tracking branch 'refs/remotes/origin/server' into server

This commit is contained in:
2023-12-20 19:15:59 +01:00
27 changed files with 166 additions and 129 deletions

View File

@ -31,6 +31,17 @@ class Profiles
await profile.init(user_id);
return profile;
}
async block(user_id) {
// blocker & blocked
let response = await this.client._post("/api/block/",
[this.client.me.user_id, user_id],
);
let data = await response.json();
}
}
export {Profiles}
export {Profiles}