CalDAV Scheduling - part 6

This commit is contained in:
mdecimus
2025-06-21 19:53:23 +02:00
parent 068457ea87
commit 367ddeeae4
24 changed files with 869 additions and 73 deletions

View File

@@ -80,7 +80,7 @@ pub fn enable_logging() {
}
pub const TEST_USERS: &[(&str, &str, &str, &str)] = &[
("admin", "secret1", "Superuser", "admin@example,com"),
("admin", "secret", "Superuser", "admin@example.com"),
("john", "secret2", "John Doe", "jdoe@example.com"),
(
"jane",
@@ -88,6 +88,6 @@ pub const TEST_USERS: &[(&str, &str, &str, &str)] = &[
"Jane Doe-Smith",
"jane.smith@example.com",
),
("bill", "secret4", "Bill Foobar", "bill@example,com"),
("mike", "secret5", "Mike Noquota", "mike@example,com"),
("bill", "secret4", "Bill Foobar", "bill@example.com"),
("mike", "secret5", "Mike Noquota", "mike@example.com"),
];