···133133 #[oai(path = "/com.atproto.repo.getRecord", method = "get")]
134134 async fn get_record(
135135 &self,
136136- /// The DID of the repo
137137- ///
138138- /// NOTE: handles should be accepted here but this is still TODO in slingshot
136136+ /// The DID or handle of the repo
139137 #[oai(example = "example_did")]
140138 Query(repo): Query<String>,
141139 /// The NSID of the record collection
···150148 ///
151149 /// If specified and a newer version of the record exists, returns 404 not
152150 /// found. That is: slingshot only retains the most recent version of a
153153- /// record.
151151+ /// record. (TODO: verify bsky behaviour for mismatched/old CID)
154152 Query(cid): Query<Option<String>>,
155153 ) -> GetRecordResponse {
156154 let did = match Did::new(repo.clone()) {