Skip to content

Commit f925335

Browse files
committed
timestamp resolution
1 parent a83112e commit f925335

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

syncserver/src/web/handlers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ pub async fn delete_collection(
284284
("uid" = String, Path, description = "User ID"),
285285
("collection" = String, Path, description = "Collection name"),
286286
("ids" = Option<String>, Query, description = "Comma-separated list of BSO IDs to return (max 100)"),
287-
("newer" = Option<f64>, Query, description = "Return only items with modified time strictly greater than this timestamp"),
288-
("older" = Option<f64>, Query, description = "Return only items with modified time strictly smaller than this timestamp"),
287+
("newer" = Option<f64>, Query, description = "Return only items with modified time strictly greater than this timestamp (ms since epoch)"),
288+
("older" = Option<f64>, Query, description = "Return only items with modified time strictly smaller than this timestamp (ms since epoch)"),
289289
("full" = Option<bool>, Query, description = "If present, return full BSO objects rather than just IDs"),
290290
("limit" = Option<i64>, Query, description = "Return at most this many objects. If more match, returns X-Weave-Next-Offset header"),
291291
("offset" = Option<String>, Query, description = "String token from a previous X-Weave-Next-Offset header for pagination"),

0 commit comments

Comments
 (0)