mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
43801f1f13
- First iteration of api for tags and tag-types - Documentation in place - Adds three new tables - tag_types - tags - feature_tag - Tagging a feature is adding a row in the feature_tag join table * #665 Co-authored-by: Simen Bekkhus <sbekkhus91@gmail.com> Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
28 lines
983 B
JavaScript
28 lines
983 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
FEATURE_CREATED: 'feature-created',
|
|
FEATURE_UPDATED: 'feature-updated',
|
|
FEATURE_ARCHIVED: 'feature-archived',
|
|
FEATURE_REVIVED: 'feature-revived',
|
|
FEATURE_IMPORT: 'feature-import',
|
|
FEATURE_TAGGED: 'feature-tagged',
|
|
FEATURE_UNTAGGED: 'feature-untagged',
|
|
DROP_FEATURES: 'drop-features',
|
|
STRATEGY_CREATED: 'strategy-created',
|
|
STRATEGY_DELETED: 'strategy-deleted',
|
|
STRATEGY_UPDATED: 'strategy-updated',
|
|
STRATEGY_IMPORT: 'strategy-import',
|
|
DROP_STRATEGIES: 'drop-strategies',
|
|
CONTEXT_FIELD_CREATED: 'context-field-created',
|
|
CONTEXT_FIELD_UPDATED: 'context-field-updated',
|
|
CONTEXT_FIELD_DELETED: 'context-field-deleted',
|
|
PROJECT_CREATED: 'project-created',
|
|
PROJECT_UPDATED: 'project-updated',
|
|
PROJECT_DELETED: 'project-deleted',
|
|
TAG_CREATED: 'tag-created',
|
|
TAG_DELETED: 'tag-deleted',
|
|
TAG_TYPE_CREATED: 'tag-type-created',
|
|
TAG_TYPE_DELETED: 'tag-type-deleted',
|
|
};
|