Compare commits

..

4 Commits

Author SHA1 Message Date
32b2185e94 Merge pull request 'fix-notification-content' (#333) from fix-notification-content into staging
All checks were successful
CI/CD Pipeline / test (push) Successful in 11m6s
CI/CD Pipeline / deploy-staging (push) Successful in 5m8s
CI/CD Pipeline / deploy-main (push) Has been skipped
Reviewed-on: #333
2024-04-02 10:37:48 +02:00
c1d46a6e6b fix ci
Some checks failed
CI/CD Pipeline / deploy-staging (push) Has been cancelled
CI/CD Pipeline / deploy-main (push) Has been cancelled
CI/CD Pipeline / test (push) Has been cancelled
2024-04-02 10:37:15 +02:00
1c43d83bd4 use proper name :-)
Some checks failed
CI/CD Pipeline / deploy-staging (push) Blocked by required conditions
CI/CD Pipeline / deploy-main (push) Blocked by required conditions
CI/CD Pipeline / test (push) Has been cancelled
2024-04-02 10:34:50 +02:00
6044aed46f Merge pull request 'only-last-30-days-notifications' (#332) from only-last-30-days-notifications into main
All checks were successful
CI/CD Pipeline / test (push) Successful in 10m22s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Successful in 6m22s
Reviewed-on: #332
2024-03-31 13:09:21 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ impl Trip {
&user,
&format!(
"{} hat eine Ausfahrt zur selben Zeit ({} um {}) wie du erstellt",
user.name, trip.day, trip.planned_starting_time
cox.user.name, trip.day, trip.planned_starting_time
),
"Neue Ausfahrt zur selben Zeit".into(),
None,

View File

@ -733,7 +733,7 @@ impl<'r> FromRequest<'r> for TechUser {
}
pub struct CoxUser {
user: User,
pub(crate) user: User,
}
impl Deref for CoxUser {