kibana/x-pack/plugins/saved_objects_tagging/common/constants.ts
Michael Paul 426d495299
Fix "to to" spelling error (#93885)
* Fix "to to" spelling error

* Build API docs

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-03-10 17:46:31 +02:00

24 lines
758 B
TypeScript

/*
* 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 id of the tagging feature as registered to `features` plugin
*/
export const tagFeatureId = 'savedObjectsTagging';
/**
* The saved object type for `tag` objects
*/
export const tagSavedObjectTypeName = 'tag';
/**
* The management section id as registered to the `management` plugin
*/
export const tagManagementSectionId = 'tags';
/**
* The list of saved object types that are currently supporting tagging.
*/
export const taggableTypes = ['dashboard', 'visualization', 'map', 'lens'];