mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Revert "Add firstTransaction boolean to Transaction."
This reverts commit 8c6aafcedb80e6212fe80d04c60e9340a0a762f6.
This commit is contained in:
parent
d3123e00fc
commit
520cb22350
@ -15,7 +15,6 @@ export class Transaction {
|
||||
this.balance = 0
|
||||
this.totalBalance = 0
|
||||
this.memo = ''
|
||||
this.firstTransaction = false
|
||||
}
|
||||
|
||||
@Field(() => String)
|
||||
@ -27,6 +26,15 @@ export class Transaction {
|
||||
@Field(() => Number)
|
||||
totalBalance: number
|
||||
|
||||
@Field({ nullable: true })
|
||||
decayStart?: string
|
||||
|
||||
@Field({ nullable: true })
|
||||
decayEnd?: string
|
||||
|
||||
@Field({ nullable: true })
|
||||
decayDuration?: number
|
||||
|
||||
@Field(() => String)
|
||||
memo: string
|
||||
|
||||
@ -44,7 +52,4 @@ export class Transaction {
|
||||
|
||||
@Field({ nullable: true })
|
||||
decay?: Decay
|
||||
|
||||
@Field(() => Boolean)
|
||||
firstTransaction: boolean
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user