add: profiles.all()

This commit is contained in:
2023-12-08 17:36:41 +01:00
parent 54afa8aae5
commit 0edcd97f94
6 changed files with 37 additions and 4 deletions

View File

@ -1,10 +1,11 @@
class Profile
{
constructor (client)
constructor (client, username = undefined, avatar_url = undefined, user_id = undefined)
{
this.client = client;
this.username = undefined;
this.avatar_url = undefined
this.username = username;
this.avatar_url = avatar_url
this.user_id = user_id
}
async init(id)