You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"As a user, I want to be able to make basic edits to a taxonomy from the UI"
Acceptance Criteria
A python and REST API allow adding a tag to a taxonomy.
A python and REST API allow renaming a tag.
changes to the tag value should propagate to ObjectTags ?
A python and REST API allow deleting an individual tag. If it has children, by default the delete will fail, but if the with_subtags option is specified, all subtags will be deleted as well.
A python and REST API allow bulk-deleting of tags. For simplicity this can be combined with (3) into a single "delete tags" API. The same criteria for handling sub-tags as 3 applies.
Attempting to bulk-deleting tags from more than one taxonomy should result in an error message. Bulk delete only works within a single taxonomy at a time.
When tags are deleted, the ObjectTags get their tag set to NULL and will be hidden, but the ObjectTags are preserved in the database and can later be re-synced if a tag with the same name is re-created. (This is already implemented.)
"As a user, I want to be able to make basic edits to a taxonomy from the UI"
Acceptance Criteria
valueshould propagate toObjectTags ?This API will be used for #132, #131, #130.