oak-domain/lib/base-app-domain/OperEntity/Storage.js

28 lines
630 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.desc = void 0;
var action_1 = require("../../actions/action");
exports.desc = {
attributes: {
operId: {
type: "ref",
ref: "oper"
},
entity: {
type: "varchar",
params: {
length: 32
},
ref: ["user", "userEntityGrant"]
},
entityId: {
type: "varchar",
params: {
length: 64
}
}
},
actionType: "appendOnly",
actions: action_1.appendOnlyActions
};