messages has been updated

This commit is contained in:
Mohammed Ashab Uddin
2020-08-20 20:14:47 +04:00
parent 7c5e343919
commit 8c0a3a9f9c
3 changed files with 54 additions and 26 deletions

View File

@@ -29,6 +29,10 @@ class User{
return this.websites.getData(companyName);
}
isWebsite(companyName){
return this.websites.isData(companyName);
}
selectWebsite(companyName)
{
return this.websites.selectData(companyName);
@@ -43,4 +47,6 @@ class User{
}
module.exports.User = User;
module.exports = {
User: User
}