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

43 lines
935 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.desc = void 0;
var action_1 = require("../../actions/action");
exports.desc = {
attributes: {
module: {
notNull: true,
type: "varchar",
params: {
length: 64
}
},
position: {
notNull: true,
type: "varchar",
params: {
length: 188
}
},
namespace: {
notNull: true,
type: "varchar",
params: {
length: 256
}
},
language: {
notNull: true,
type: "varchar",
params: {
length: 32
}
},
data: {
notNull: true,
type: "object"
}
},
actionType: "crud",
actions: action_1.genericActions
};