add schnupper management
All checks were successful
CI/CD Pipeline / test (push) Successful in 9m59s
CI/CD Pipeline / deploy-staging (push) Successful in 4m4s
CI/CD Pipeline / deploy-main (push) Has been skipped

This commit is contained in:
2024-03-06 15:55:13 +01:00
parent a3ce96d4bf
commit edb42717bc
5 changed files with 133 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ use crate::{
pub mod boat;
pub mod mail;
pub mod planned_event;
pub mod schnupper;
pub mod user;
#[get("/rss?<key>")]
@@ -74,6 +75,7 @@ async fn list(db: &State<SqlitePool>, _admin: AdminUser, list_form: Form<ListFor
pub fn routes() -> Vec<Route> {
let mut ret = Vec::new();
ret.append(&mut user::routes());
ret.append(&mut schnupper::routes());
ret.append(&mut boat::routes());
ret.append(&mut mail::routes());
ret.append(&mut planned_event::routes());