mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* add a link for issue to remove circular deps * features: migrate from joi to config-schema * update tests * migrate home tutorials to config-schema * migrate home dataset validation to config schema * remove unnecessary type. we cannot guarantee this is a valid SO * address Pierres comments
11 lines
532 B
JavaScript
11 lines
532 B
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
// the file created to remove TS cicular dependency between features and security pluin
|
|
// https://github.com/elastic/kibana/issues/87388
|
|
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
|
|
export { featurePrivilegeIterator } from '../../security/server/authorization';
|