Add email verification.

This commit is contained in:
Paul Makles
2020-01-25 10:26:56 +00:00
parent 845a6bb3dd
commit 70b4111259
6 changed files with 419 additions and 15 deletions

View File

@@ -4,5 +4,5 @@ mod account;
pub fn mount(rocket: Rocket) -> Rocket {
rocket
.mount("/api/account", routes![ account::root, account::create ])
.mount("/api/account", routes![ account::root, account::create, account::verify_email ])
}