Implemented basic support for prelogin and notification negotiation

This commit is contained in:
Daniel García
2018-08-24 19:02:34 +02:00
parent c91f80c456
commit 8d1ee859f2
5 changed files with 63 additions and 0 deletions

View File

@ -45,6 +45,7 @@ fn init_rocket() -> Rocket {
.mount("/api", api::core_routes())
.mount("/identity", api::identity_routes())
.mount("/icons", api::icons_routes())
.mount("/notifications", api::notifications_routes())
.manage(db::init_pool())
}