A file-based task manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename source-side log event from 'exported' to 'assigned'

Matches the command rename (tsk export → tsk assign) and the
`assigned=[[ns/tsk-N]]` property name. The destination side keeps its
`accepted` event on accept; both sides now produce a clearly-named
event when a cross-namespace assignment happens.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+2 -2
+2 -2
src/workspace.rs
··· 1702 1702 let mut my_attrs = backend::read_attrs(self.store(), src_id)?; 1703 1703 my_attrs.insert("assigned".into(), assigned_link.clone()); 1704 1704 backend::write_attrs(self.store(), src_id, &my_attrs)?; 1705 - self.log(src_id, "exported", Some(&assigned_link))?; 1705 + self.log(src_id, "assigned", Some(&assigned_link))?; 1706 1706 Ok(key) 1707 1707 } 1708 1708 ··· 3185 3185 .iter() 3186 3186 .map(|e| e.event.clone()) 3187 3187 .collect(); 3188 - assert!(src_log_events.contains(&"exported".to_string())); 3188 + assert!(src_log_events.contains(&"assigned".to_string())); 3189 3189 let dst_log_events: Vec<String> = alice 3190 3190 .read_log(new_id) 3191 3191 .unwrap()