Skip to content

Commit

Permalink
Merge pull request #167 from ostelco/bugfix/AT
Browse files Browse the repository at this point in the history
Added missing @JsonIgnore to id of PurchaseRecord in model
  • Loading branch information
vihangpatil authored Jun 13, 2018
2 parents 1d503ee + a911006 commit 03dd9b7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions model/src/main/kotlin/org/ostelco/prime/model/Entities.kt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ data class PurchaseRecord(
private var _id: String = ""

override var id: String
@JsonIgnore
get() = this._id
@JsonIgnore
set(value) {
_id = value
}
Expand Down

0 comments on commit 03dd9b7

Please sign in to comment.