chore: update spec to reflect phases 0-4 done; fix axum 0.8 path syntax; add dev config
This commit is contained in:
+3
-3
@@ -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))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user