diff --git a/src/api.rs b/src/api.rs index 15cd01c..9940a5f 100644 --- a/src/api.rs +++ b/src/api.rs @@ -217,6 +217,14 @@ async fn status(req: HttpRequest) -> Result { id: "likes.asc".to_string(), title: "Least Likes".to_string(), }, + FilterOption { + id: "released_at_unix.desc".to_string(), + title: "New".to_string(), + }, + FilterOption { + id: "released_at_unix.asc".to_string(), + title: "Old".to_string(), + }, FilterOption { id: "title_sortable.asc".to_string(), title: "A - Z".to_string(),