Support for Group Member Labels

This commit is contained in:
Scott Nonnenberg
2026-02-03 04:06:25 +10:00
committed by GitHub
parent d173db816b
commit 09c71ad356
60 changed files with 1794 additions and 345 deletions

View File

@@ -14,7 +14,12 @@ const CONFIG_KEY = 'global.calling.maxGroupCallRingSize';
describe('isConversationTooBigToRing', () => {
const fakeMemberships = (count: number) =>
times(count, () => ({ aci: generateAci(), isAdmin: false }));
times(count, () => ({
aci: generateAci(),
isAdmin: false,
labelEmoji: undefined,
labelString: undefined,
}));
it('returns false if there are no memberships (i.e., for a direct conversation)', async () => {
await updateRemoteConfig([]);