(title: &str)
| 1173 | } |
| 1174 | |
| 1175 | fn intent_opts(title: &str) -> atomic_repository::IntentCreateOptions { |
| 1176 | atomic_repository::IntentCreateOptions { |
| 1177 | title: title.to_string(), |
| 1178 | priority: Some("medium".to_string()), |
| 1179 | assignee: None, |
| 1180 | labels: Vec::new(), |
| 1181 | session_id: None, |
| 1182 | turn_id: None, |
| 1183 | kind: None, |
| 1184 | } |
| 1185 | } |
| 1186 | |
| 1187 | /// Overwrite a created intent's body (and optionally its status) with a |
| 1188 | /// directive body, then index it into the KG. Reuses the created entry's |
no outgoing calls
no test coverage detected