fix: still having 403 bit fixed some bugs
This commit is contained in:
@ -67,6 +67,16 @@ class Project {
|
||||
) {
|
||||
this._status = value;
|
||||
}
|
||||
|
||||
toObject() {
|
||||
return {
|
||||
idProject: this.idProject,
|
||||
projectName: this.projectName,
|
||||
creationDate: this.creationDate,
|
||||
logo: this.logo,
|
||||
status: this.status,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export default Project;
|
||||
|
@ -44,7 +44,7 @@ class SectionCell {
|
||||
this._modificationDate = value;
|
||||
}
|
||||
|
||||
toPlainObject() {
|
||||
toObject() {
|
||||
return {
|
||||
idSectionCell: this._idSectionCell,
|
||||
sectionId: this._sectionId,
|
||||
|
Reference in New Issue
Block a user