Allow to remove forced tags of a node

Set as empty StringList
This commit is contained in:
Juan Font
2024-04-17 22:08:32 +00:00
parent 580f96ce83
commit c906aaf927
2 changed files with 12 additions and 0 deletions

View File

@@ -206,6 +206,11 @@ func SetTags(
tags []string,
) error {
if len(tags) == 0 {
// if no tags are provided, we remove all forced tags
if err := tx.Model(&types.Node{}).Where("id = ?", nodeID).Update("forced_tags", types.StringList{}).Error; err != nil {
return fmt.Errorf("failed to remove tags for node in the database: %w", err)
}
return nil
}