12 lines
250 B
JavaScript
12 lines
250 B
JavaScript
export default [{
|
|
name: 'resetPasswordToken',
|
|
// TODO: how should we define a field a string that cannot be seen in the admin panel?
|
|
// using type: 'input' for now
|
|
type: 'input',
|
|
},
|
|
{
|
|
name: 'resetPasswordExpiration',
|
|
type: 'date',
|
|
},
|
|
];
|