Entity Create Option Action
const manifest = {
type: "entityAction",
kind: "create",
alias: "My.EntityAction",
name: "My Create Entity Action",
forEntityTypes: ["my-entity"],
};const manifest = {
type: "entityCreateOptionAction",
alias: "My.EntityCreateOptionAction",
name: "My Create Option Action",
weight: 100,
api: () => import("./path-to-file.js"),
forEntityTypes: ["my-entity"],
meta: {
icon: "icon-unplug",
label: "My Create Option Action",
additionalOptions: false,
},
};Last updated
Was this helpful?