mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Backports the following commits to 6.x: - support standard license (#26294)
This commit is contained in:
parent
cc15cbbf92
commit
a67ad05e19
1 changed files with 7 additions and 1 deletions
|
@ -21,7 +21,13 @@ export function checkLicense(xPackInfo: any): LicenseCheckResult {
|
|||
};
|
||||
}
|
||||
|
||||
const isAnyXpackLicense = xPackInfo.license.isOneOf(['basic', 'gold', 'platinum', 'trial']);
|
||||
const isAnyXpackLicense = xPackInfo.license.isOneOf([
|
||||
'basic',
|
||||
'standard',
|
||||
'gold',
|
||||
'platinum',
|
||||
'trial',
|
||||
]);
|
||||
|
||||
if (!isAnyXpackLicense) {
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue