Cleanups and Fixes for Emergency Access

- Several cleanups and code optimizations for Emergency Access
- Fixed a race-condition regarding jobs for Emergency Access
- Some other small changes like `allow(clippy::)` removals

Fixes #2925
This commit is contained in:
BlackDex
2022-11-26 19:07:28 +01:00
parent 8feed2916f
commit 4aa6dd22bb
12 changed files with 173 additions and 153 deletions

View File

@@ -364,7 +364,7 @@ impl User {
}
impl Invitation {
pub fn new(email: String) -> Self {
pub fn new(email: &str) -> Self {
let email = email.to_lowercase();
Self {
email,