add: profiles.all()
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user