Allow to remove forced tags of a node
Set as empty StringList
This commit is contained in:
parent
580f96ce83
commit
c906aaf927
2 changed files with 12 additions and 0 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue