Soft auto-apply (retract + confirm, no self-training) + tagging UX (reject-rest, tag-input race, modal playlist) #197

Merged
bvandeusen merged 12 commits from dev into main 2026-07-06 21:03:30 -04:00
Showing only changes of commit 17433c69d4 - Show all commits
+3
View File
@@ -15,6 +15,8 @@ def test_serialize_tag_with_enum_kind():
assert serialize_tag(row) == {
"id": 1, "name": "Sasuke Uchiha", "kind": "character",
"fandom_id": 5, "fandom_name": "Naruto", "is_system": False,
# Applied-tag context defaults for rows without image scope (m139).
"source": None, "confirmed": False,
}
@@ -27,6 +29,7 @@ def test_serialize_tag_with_string_kind_and_no_fandom():
assert serialize_tag(row) == {
"id": 2, "name": "solo", "kind": "general",
"fandom_id": None, "fandom_name": None, "is_system": False,
"source": None, "confirmed": False,
}