feat(handlers): Add thread submission handler

This commit is contained in:
Vincent Ambo 2018-04-08 20:01:32 +02:00
parent fc7ca2900d
commit 094b1e0722
3 changed files with 17 additions and 1 deletions

View file

@ -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();