mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +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>
10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
module.exports = {
|
|
TAG_FEATURE: 'tag-feature',
|
|
UNTAG_FEATURE: 'untag-feature',
|
|
CREATE_TAG: 'create-tag',
|
|
DELETE_TAG: 'delete-tag',
|
|
CREATE_TAG_TYPE: 'create-tag-type',
|
|
DELETE_TAG_TYPE: 'delete-tag-type',
|
|
UPDATE_TAG_TYPE: 'update-tag-type',
|
|
};
|