chore(core): Hide invite URL in users list if not an admin (#17101)

This commit is contained in:
Andreas Fitzek
2025-07-09 15:58:20 +02:00
committed by GitHub
parent 336d6707e3
commit 3b46dec616
8 changed files with 73 additions and 41 deletions

View File

@@ -279,7 +279,7 @@ describe('POST /change-password', () => {
id: owner.id,
});
const comparisonResult = await compare(passwordToStore, storedPassword);
const comparisonResult = await compare(passwordToStore, storedPassword!);
expect(comparisonResult).toBe(true);
expect(storedPassword).not.toBe(passwordToStore);