mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
17 lines
414 B
JavaScript
17 lines
414 B
JavaScript
module.exports = {
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
token: { type: 'string', primary: true, token: true },
|
|
generatedBy: {
|
|
type: 'relationship',
|
|
relationship: 'GENERATED',
|
|
target: 'User',
|
|
direction: 'in',
|
|
},
|
|
activated: {
|
|
type: 'relationship',
|
|
relationship: 'ACTIVATED',
|
|
target: 'EmailAddress',
|
|
direction: 'out',
|
|
},
|
|
}
|