Add eintrittsdatum to member
This commit is contained in:
parent
70d36d76ac
commit
7077511494
|
@ -152,6 +152,7 @@ class Member extends Data
|
||||||
'staatsangehoerigkeitText' => $this->otherCountry,
|
'staatsangehoerigkeitText' => $this->otherCountry,
|
||||||
'nameZusatz' => $this->furtherAddress,
|
'nameZusatz' => $this->furtherAddress,
|
||||||
'version' => $this->version,
|
'version' => $this->version,
|
||||||
|
'eintrittsdatum' => $this->joinedAt->format('Y-m-d 00:00:00'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -70,6 +70,7 @@ class PutMemberTest extends TestCase
|
||||||
'staatsangehoerigkeitText' => 'Land',
|
'staatsangehoerigkeitText' => 'Land',
|
||||||
'nameZusatz' => 'Name',
|
'nameZusatz' => 'Name',
|
||||||
'version' => 40,
|
'version' => 40,
|
||||||
|
'eintrittsdatum' => '2021-02-02 00:00:00',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue