Skip to content

Commit

Permalink
avniproject/avni-client#1411 | expose static method to get Individual…
Browse files Browse the repository at this point in the history
….ADDRESS_LEVEL_DUMMY_UUID
  • Loading branch information
himeshr committed May 28, 2024
1 parent 3e70cae commit 7839f44
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/Individual.js
Original file line number Diff line number Diff line change
Expand Up @@ -1229,9 +1229,13 @@ class Individual extends BaseEntity {
return SchemaNames.Individual;
}

updateAudit(userInfo, isNew) {
updateAuditFields(this, userInfo, isNew);
}
updateAudit(userInfo, isNew) {
updateAuditFields(this, userInfo, isNew);
}

static getAddressLevelDummyUUID() {
return ADDRESS_LEVEL_DUMMY_UUID;
}
}

export default Individual;

0 comments on commit 7839f44

Please sign in to comment.