19 lines
462 B
JavaScript
19 lines
462 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.desc = void 0;
|
|
var action_1 = require("oak-domain/lib/actions/action");
|
|
exports.desc = {
|
|
attributes: {
|
|
name: {
|
|
type: "varchar",
|
|
params: {
|
|
length: 64
|
|
}
|
|
}
|
|
},
|
|
static: true,
|
|
actionType: "readOnly",
|
|
actions: action_1.readOnlyActions.concat(action_1.relationActions),
|
|
relation: ['owner']
|
|
};
|