allow to edit roles

This commit is contained in:
2025-05-05 20:01:32 +02:00
parent 9a4dcc0b9d
commit 1864ea260c
14 changed files with 187 additions and 35 deletions

View File

@@ -12,6 +12,7 @@ pub mod boat;
pub mod event;
pub mod mail;
pub mod notification;
pub mod role;
pub mod schnupper;
pub mod user;
@@ -81,6 +82,7 @@ pub fn routes() -> Vec<Route> {
ret.append(&mut notification::routes());
ret.append(&mut mail::routes());
ret.append(&mut event::routes());
ret.append(&mut role::routes());
ret.append(&mut routes![rss, show_rss, show_list, list]);
ret
}