We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce09bc commit 3d9f35dCopy full SHA for 3d9f35d
1 file changed
crates/tree-ring-memory-cli/src/tui/app.rs
@@ -279,7 +279,7 @@ impl App {
279
summary: summary.trim().to_string(),
280
event_type: "lesson".to_string(),
281
ring: "cambium".to_string(),
282
- scope: "project".to_string(),
+ scope: "global".to_string(),
283
project: None,
284
tags: Vec::new(),
285
},
@@ -584,6 +584,7 @@ mod tests {
584
assert_eq!(memories.len(), 1);
585
assert_eq!(memories[0].summary, "Use shared TUI remember action");
586
assert_eq!(memories[0].ring, "cambium");
587
+ assert_eq!(memories[0].scope, "global");
588
}
589
590
#[test]
0 commit comments