[-] Remove method to add extra serialized props. This does not work, and the prop being added was already included.

This commit is contained in:
Pedro Lopez
2019-09-08 03:54:44 -04:00
parent 18199d8120
commit 517e22381a
4 changed files with 5 additions and 43 deletions

View File

@@ -17,23 +17,6 @@ class Base {
}
_patch(data) { return data; }
/**
* Name that represents this model in the WhatsApp Web Store
* @readonly
*/
static get WAppModel() {
return this.name;
}
/**
* Extra fields to add to model serialization
* @readonly
*/
static get extraFields() {
return [];
}
}
module.exports = Base;