add mail
Some checks failed
CI/CD Pipeline / deploy-staging (push) Has been cancelled
CI/CD Pipeline / deploy-main (push) Has been cancelled
CI/CD Pipeline / test (push) Has been cancelled

This commit is contained in:
2024-01-01 15:50:06 +01:00
parent cf5b2751dd
commit 0ad342b147
10 changed files with 407 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ use crate::{
};
pub mod boat;
pub mod mail;
pub mod planned_event;
pub mod user;
@@ -28,6 +29,7 @@ pub fn routes() -> Vec<Route> {
let mut ret = Vec::new();
ret.append(&mut user::routes());
ret.append(&mut boat::routes());
ret.append(&mut mail::routes());
ret.append(&mut planned_event::routes());
ret.append(&mut routes![rss, show_rss]);
ret