US04-05: Operate Rename Plans in the Browser (#69)

This commit was merged in pull request #69.
This commit is contained in:
2026-08-16 11:52:10 +02:00
parent 7103cb84bf
commit 8d96acd067
12 changed files with 809 additions and 9 deletions

View File

@@ -229,6 +229,12 @@ class RenameJournal:
classification, reason = _classify(row["journal_state"], source_exists, destination_exists)
return {
"operation_id": operation_id,
"plan_id": row["plan_id"],
"album": row["album"],
# The paths travel with the verdict so a reviewer can see which folder is
# unresolved without correlating an opaque operation id by hand.
"source_path": row["source_path"],
"destination_path": row["destination_path"],
"journal_state": row["journal_state"],
"classification": classification,
"reason": reason,