add first draft of logbook

This commit is contained in:
2023-07-23 12:17:57 +02:00
parent f09454fb38
commit 1d4c5f356d
10 changed files with 507 additions and 3 deletions

View File

@ -22,6 +22,7 @@ use crate::model::{
mod admin;
mod auth;
mod cox;
mod log;
mod misc;
#[get("/")]
@ -114,6 +115,7 @@ pub fn config(rocket: Rocket<Build>) -> Rocket<Build> {
rocket
.mount("/", routes![index, join, remove])
.mount("/auth", auth::routes())
.mount("/log", log::routes())
.mount("/cox", cox::routes())
.mount("/admin", admin::routes())
.mount("/", misc::routes())