oak-general-business/es/oak-app-domain/Parasite/Storage.js

52 lines
1.0 KiB
JavaScript

import { actions } from "./Action";
export const desc = {
attributes: {
userId: {
notNull: true,
type: "ref",
ref: "user"
},
entity: {
notNull: true,
type: "varchar",
params: {
length: 32
}
},
entityId: {
notNull: true,
type: "varchar",
params: {
length: 64
}
},
showTip: {
type: "boolean"
},
expiresAt: {
notNull: true,
type: "datetime"
},
expired: {
notNull: true,
type: "boolean"
},
redirectTo: {
notNull: true,
type: "object"
},
multiple: {
type: "boolean"
},
tokenLifeLength: {
type: "int",
params: {
width: 4,
signed: true
}
}
},
actionType: "crud",
actions
};