mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-04-14 00:18:03 +02:00
fix: #9389, allow admins to add themselves to private groups
This commit is contained in:
@@ -723,6 +723,12 @@ describe('Groups', () => {
|
||||
}
|
||||
meta.config.allowPrivateGroups = oldValue;
|
||||
});
|
||||
|
||||
it('should allow admins to join private groups', async () => {
|
||||
const groupsAPI = require('../src/api/groups');
|
||||
await groupsAPI.join({ uid: adminUid }, { uid: adminUid, slug: 'global-moderators' });
|
||||
assert(await Groups.isMember(adminUid, 'Global Moderators'));
|
||||
});
|
||||
});
|
||||
|
||||
describe('.leave()', () => {
|
||||
|
||||
Reference in New Issue
Block a user