mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Reporting] Allow reporting capabilities on gold with the new reporting roles (#129374)
* set min license level to gold
* remove use of standard license
* update tests to check for gold level license
* accept gold license in feature registration
* Revert "remove use of standard license"
This reverts commit 684f8f500c
.
* refactor LICENSE_TYPE_STANDARD to LICENSE_TYPE_CLOUD_STANDARD
* also update canvas to use gold min
* updated canvas features snapshot
* remember to save files!
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
0790fd01d9
commit
edf6e21941
13 changed files with 23 additions and 22 deletions
|
@ -309,7 +309,7 @@ Array [
|
|||
"reporting",
|
||||
],
|
||||
},
|
||||
"minimumLicense": "platinum",
|
||||
"minimumLicense": "gold",
|
||||
"name": "Generate PDF or PNG reports",
|
||||
"savedObject": Object {
|
||||
"all": Array [],
|
||||
|
@ -401,7 +401,7 @@ Array [
|
|||
"reporting",
|
||||
],
|
||||
},
|
||||
"minimumLicense": "platinum",
|
||||
"minimumLicense": "gold",
|
||||
"name": "Generate PDF or PNG reports",
|
||||
"savedObject": Object {
|
||||
"all": Array [],
|
||||
|
|
|
@ -39,6 +39,7 @@ const validLicenseSchema = schema.oneOf([
|
|||
const validSubFeaturePrivilegeLicensesSchema = schema.oneOf([
|
||||
schema.literal('platinum'),
|
||||
schema.literal('enterprise'),
|
||||
schema.literal('gold'),
|
||||
schema.literal('trial'),
|
||||
]);
|
||||
|
||||
|
|
|
@ -514,7 +514,7 @@ const reportingFeatures: {
|
|||
}
|
||||
),
|
||||
includeIn: 'all',
|
||||
minimumLicense: 'platinum',
|
||||
minimumLicense: 'gold',
|
||||
savedObject: { all: [], read: [] },
|
||||
management: { insightsAndAlerting: ['reporting'] },
|
||||
api: ['generateReport'],
|
||||
|
@ -550,7 +550,7 @@ const reportingFeatures: {
|
|||
}
|
||||
),
|
||||
includeIn: 'all',
|
||||
minimumLicense: 'platinum',
|
||||
minimumLicense: 'gold',
|
||||
savedObject: { all: [], read: [] },
|
||||
management: { insightsAndAlerting: ['reporting'] },
|
||||
api: ['generateReport'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue