chore: update spec to reflect phases 0-4 done; fix axum 0.8 path syntax; add dev config

This commit is contained in:
2026-05-17 15:35:39 -07:00
parent e6fb4f48c6
commit f595b8067f
4 changed files with 140 additions and 95 deletions
+3 -3
View File
@@ -15,9 +15,9 @@ pub fn router() -> Router<AppState> {
.route("/ui/indexed", get(indexed::handler))
.route("/ui/publishers", get(publishers::list_handler))
.route("/ui/publishers/vouch", post(publishers::vouch_handler))
.route("/ui/publishers/:pubkey/block", post(publishers::block_handler))
.route("/ui/publishers/:pubkey/unblock", post(publishers::unblock_handler))
.route("/ui/publishers/:pubkey/mute", post(publishers::mute_handler))
.route("/ui/publishers/{pubkey}/block", post(publishers::block_handler))
.route("/ui/publishers/{pubkey}/unblock", post(publishers::unblock_handler))
.route("/ui/publishers/{pubkey}/mute", post(publishers::mute_handler))
.route("/ui/published", get(published::handler))
}