diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T18·01+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T18·01+0200 |
commit | 094b1e07225313c930c26dbeb73755f34a537ce4 (patch) | |
tree | 10dd453d62684b13185e5f332cff5d34b336b0d7 /src/main.rs | |
parent | fc7ca2900d656974891c7e5ccfd532ab93aade94 (diff) |
feat(handlers): Add thread submission handler
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 767d45891c3b..ad1f81927d32 100644 --- a/src/main.rs +++ b/src/main.rs @@ -61,6 +61,7 @@ fn main() { App::with_state(AppState { db: db_addr.clone(), tera }) .middleware(middleware::Logger::default()) .resource("/", |r| r.method(Method::GET).with(forum_index)) + .resource("/thread", |r| r.method(Method::POST).with2(submit_thread)) .resource("/thread/{id}", |r| r.method(Method::GET).with2(forum_thread))}) .bind(&bind_host).expect(&format!("Could not bind on '{}'", bind_host)) .start(); |