mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
30 lines
735 B
TypeScript
30 lines
735 B
TypeScript
import { CreationInterface } from './CreationInterface'
|
|
|
|
const lastMonth = (date: Date): string => {
|
|
return new Date(date.getFullYear(), date.getMonth() - 1, 1).toISOString()
|
|
}
|
|
|
|
export const creations: CreationInterface[] = [
|
|
{
|
|
email: 'bibi@bloxberg.de',
|
|
amount: 1000,
|
|
memo: 'Herzlich Willkommen bei Gradido!',
|
|
creationDate: lastMonth(new Date()),
|
|
confirmed: true,
|
|
},
|
|
{
|
|
email: 'bob@baumeister.de',
|
|
amount: 1000,
|
|
memo: 'Herzlich Willkommen bei Gradido!',
|
|
creationDate: lastMonth(new Date()),
|
|
confirmed: true,
|
|
},
|
|
{
|
|
email: 'raeuber@hotzenplotz.de',
|
|
amount: 1000,
|
|
memo: 'Herzlich Willkommen bei Gradido!',
|
|
creationDate: lastMonth(new Date()),
|
|
confirmed: true,
|
|
},
|
|
]
|