27 lines
451 B
TypeScript
27 lines
451 B
TypeScript
export const expirationOptions = [
|
|
{
|
|
label: 'apikeys.form.expiration.7days',
|
|
type: 'day',
|
|
value: 7,
|
|
locale: true
|
|
},
|
|
{
|
|
label: 'apikeys.form.expiration.1month',
|
|
type: 'month',
|
|
value: 1,
|
|
locale: true
|
|
},
|
|
{
|
|
label: 'apikeys.form.expiration.6months',
|
|
type: 'month',
|
|
value: 6,
|
|
locale: true
|
|
},
|
|
{
|
|
label: 'apikeys.form.expiration.never',
|
|
type: 'never',
|
|
value: -1,
|
|
locale: true
|
|
}
|
|
];
|