Merge pull request 'supply all variables for planned_event roles' (#191) from staging into main

Reviewed-on: Ruderverein-Donau-Linz/rowt#191
This commit is contained in:
philipp 2024-01-24 18:18:51 +01:00
commit 29486ac7a2

View File

@ -26,7 +26,7 @@ async fn index(
let mut context = Context::new();
if user.has_role(db, "cox").await || user.has_role(db, "admin").await {
if user.has_role(db, "cox").await || user.has_role(db, "planned_event").await {
let triptypes = TripType::all(db).await;
context.insert("trip_types", &triptypes);
}