mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-29 07:26:05 +00:00
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.espocrm.com/schema/metadata/app/consoleCommands.json",
|
|
"title": "app/appParams",
|
|
"description": "Console commands.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"description": "A command name. In camelCase format.",
|
|
"properties": {
|
|
"className": {
|
|
"type": "string",
|
|
"description": "An implementation class name. Should implement Espo\\Core\\Console\\Command interface."
|
|
},
|
|
"listed": {
|
|
"type": "boolean",
|
|
"description": "Whether the command is listed when running bin/command."
|
|
},
|
|
"noSystemUser": {
|
|
"type": "boolean",
|
|
"description": "Do not load the system user."
|
|
},
|
|
"allowedOptions": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"description": "Allowed options."
|
|
},
|
|
"allowedFlags": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"description": "Allowed flags."
|
|
}
|
|
}
|
|
}
|
|
}
|