-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Cases] Add owner and description properties to
kibana.json
(#102707)
- Loading branch information
Showing
1 changed file
with
28 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,31 @@ | ||
{ | ||
"configPath": ["xpack", "cases"], | ||
"id": "cases", | ||
"kibanaVersion": "kibana", | ||
"extraPublicDirs": ["common"], | ||
"requiredPlugins": [ | ||
"actions", | ||
"esUiShared", | ||
"features", | ||
"kibanaReact", | ||
"kibanaUtils", | ||
"triggersActionsUi" | ||
"configPath":[ | ||
"cases", | ||
"xpack" | ||
], | ||
"optionalPlugins": ["spaces", "security"], | ||
"server": true, | ||
"ui": true, | ||
"version": "8.0.0" | ||
"description":"The Case management system in Kibana", | ||
"extraPublicDirs":[ | ||
"common" | ||
], | ||
"id":"cases", | ||
"kibanaVersion":"kibana", | ||
"optionalPlugins":[ | ||
"security", | ||
"spaces" | ||
], | ||
"owner":{ | ||
"githubTeam":"security-threat-hunting", | ||
"name":"Security Solution Threat Hunting" | ||
}, | ||
"requiredPlugins":[ | ||
"actions", | ||
"esUiShared", | ||
"features", | ||
"kibanaReact", | ||
"kibanaUtils", | ||
"triggersActionsUi" | ||
], | ||
"server":true, | ||
"ui":true, | ||
"version":"8.0.0" | ||
} |