one more error fix :-) #641

Merged
philipp merged 1 commits from fix into staging 2024-07-24 09:25:16 +02:00
Showing only changes of commit afa88b9529 - Show all commits

View File

@ -213,7 +213,7 @@ ORDER BY day;",
pub(crate) async fn user_allowed_to_change(&self, db: &SqlitePool, user: &User) -> bool {
if self.belongs_to_event(db).await {
user.has_role(db, "manage_event").await
user.has_role(db, "manage_events").await
} else {
self.user_is_cox(db, user).await != CoxAtTrip::No
}