allow admin to send notifications
Some checks failed
CI/CD Pipeline / deploy-main (push) Waiting to run
CI/CD Pipeline / test (push) Successful in 11m20s
CI/CD Pipeline / deploy-staging (push) Has been cancelled

This commit is contained in:
2024-04-08 19:35:31 +02:00
parent 3b9103e9aa
commit 64d32e2688
4 changed files with 97 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ use crate::{
pub mod boat;
pub mod mail;
pub mod notification;
pub mod planned_event;
pub mod schnupper;
pub mod user;
@@ -77,6 +78,7 @@ pub fn routes() -> Vec<Route> {
ret.append(&mut user::routes());
ret.append(&mut schnupper::routes());
ret.append(&mut boat::routes());
ret.append(&mut notification::routes());
ret.append(&mut mail::routes());
ret.append(&mut planned_event::routes());
ret.append(&mut routes![rss, show_rss, show_list, list]);