(title: &str)
| 944 | } |
| 945 | |
| 946 | fn intent_opts(title: &str) -> atomic_repository::IntentCreateOptions { |
| 947 | atomic_repository::IntentCreateOptions { |
| 948 | title: title.to_string(), |
| 949 | priority: Some("medium".to_string()), |
| 950 | assignee: None, |
| 951 | labels: Vec::new(), |
| 952 | session_id: None, |
| 953 | turn_id: None, |
| 954 | kind: None, |
| 955 | } |
| 956 | } |
| 957 | |
| 958 | /// Overwrite a created intent's body (and optionally its status) with a |
| 959 | /// directive body, then index it into the KG. Reuses the created entry's |
no outgoing calls
no test coverage detected