Merge pull request 'fix' (#639) from fix into staging

Reviewed-on: Ruderverein-Donau-Linz/rowt#639
This commit is contained in:
philipp 2024-07-24 08:46:34 +02:00
commit 6cd555298d

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, "planned_event").await
user.has_role(db, "manage_event").await
} else {
self.user_is_cox(db, user).await != CoxAtTrip::No
}