1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 20:19:30 +00:00

Implemented Account.createAccount

This commit is contained in:
2022-02-13 22:09:09 +00:00
parent 119445fd6e
commit cbdbc92807

View File

@@ -23,8 +23,15 @@ class Account extends User {
}
static createAccount() {
static async createAccount(fname, oname, lname, email, password) {
return await super.createUser(
'account',
fname,
oname,
lname,
email,
password
);
}
}