[#625] only call freebusy for attendees that have neither accepted nor declined

This commit is contained in:
Camille Moussu
2026-03-13 14:45:29 +01:00
committed by Benoit TELLIER
parent 5269c43354
commit d41cfe1186
5 changed files with 29 additions and 17 deletions
+10 -2
View File
@@ -652,7 +652,11 @@ describe("Event Preview Display", () => {
const expectedUrl = `test/mailto/?uri=mailto%3Ajohn%40test.com&subject=Test%20Event`;
expect(mockOpen).toHaveBeenCalledWith(expectedUrl);
expect(mockOpen).toHaveBeenCalledWith(
expectedUrl,
"_blank",
"noopener,noreferrer"
);
});
it("message button encodes special characters in event title correctly", () => {
@@ -723,7 +727,11 @@ describe("Event Preview Display", () => {
const expectedUrl = `test/mailto/?uri=mailto%3Ajohn%40test.com&subject=Meeting%20%26%20Discussion%3F%20%23Important`;
expect(mockOpen).toHaveBeenCalledWith(expectedUrl);
expect(mockOpen).toHaveBeenCalledWith(
expectedUrl,
"_blank",
"noopener,noreferrer"
);
});
describe("Owner Email Permissions", () => {