Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
0

Configure Feed

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

lil api notes

+7 -1
+7 -1
ufos/src/server.rs
··· 216 216 /// Get all collections 217 217 /// 218 218 /// TODO: paginate 219 + /// 220 + /// WARNING: this endpoint will return an object instead of array when pagination is added 219 221 #[endpoint { 220 222 method = GET, 221 223 path = "/collections/all" ··· 265 267 /// The format of this API response will be changing soon. 266 268 #[endpoint { 267 269 method = GET, 268 - path = "/collections" 270 + path = "/collections", 271 + /* 272 + * this is going away 273 + */ 274 + unpublished = true, 269 275 }] 270 276 async fn get_top_collections(ctx: RequestContext<Context>) -> OkCorsResponse<TopCollections> { 271 277 let Context { storage, .. } = ctx.context();