feat(FN-3276): add task review tab with metadata persistence and desktop la
This merge lands three major features and a significant dashboard enhancement. FN-3276 adds a full Review tab to the task detail modal with multi-step lifecycle: review metadata persistence in the task store, new task workflow routes for refresh and same-task revision, and the review tab UI surface Fusion-Task-Id: FN-3276
This commit is contained in:
@@ -201,6 +201,7 @@ CREATE TABLE IF NOT EXISTS tasks (
|
||||
attachments TEXT DEFAULT '[]',
|
||||
steeringComments TEXT DEFAULT '[]',
|
||||
comments TEXT DEFAULT '[]',
|
||||
review TEXT,
|
||||
workflowStepResults TEXT DEFAULT '[]',
|
||||
prInfo TEXT,
|
||||
issueInfo TEXT,
|
||||
@@ -1189,6 +1190,7 @@ export class Database {
|
||||
|
||||
if (this.hasTable("tasks")) {
|
||||
this.addColumnIfMissing("tasks", "executionStartBranch", "TEXT");
|
||||
this.addColumnIfMissing("tasks", "review", "TEXT");
|
||||
}
|
||||
|
||||
if (version >= SCHEMA_VERSION) return;
|
||||
|
||||
Reference in New Issue
Block a user