strapi changes on startup

This commit is contained in:
Julian Krauser 2025-07-23 13:46:39 +02:00
parent 39928af1c5
commit 61efe535db
2 changed files with 5 additions and 1 deletions

View file

@ -33,6 +33,10 @@ export interface AdminApiToken extends Struct.CollectionTypeSchema {
minLength: 1;
}> &
Schema.Attribute.DefaultTo<"">;
encryptedKey: Schema.Attribute.Text &
Schema.Attribute.SetMinMaxLength<{
minLength: 1;
}>;
expiresAt: Schema.Attribute.DateTime;
lastUsedAt: Schema.Attribute.DateTime;
lifespan: Schema.Attribute.BigInteger;