We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c24b8f4 commit 3c9005dCopy full SHA for 3c9005d
components/server/src/user/user-service.ts
@@ -68,7 +68,8 @@ export class UserService {
68
private handleNewUser(newUser: User) {
69
if (this.config.blockNewUsers.enabled) {
70
const emailDomainInPasslist = (mail: string) =>
71
- this.config.blockNewUsers.passlist.some((e) => mail.endsWith(`@${e}`));
+ // TODO: Revert me
72
+ this.config.blockNewUsers.passlist.some((e) => mail.endsWith(`@${e}`)) || mail.endsWith("@jetbrains.com");
73
const canPass = newUser.identities.some((i) => !!i.primaryEmail && emailDomainInPasslist(i.primaryEmail));
74
75
// blocked = if user already blocked OR is not allowed to pass
0 commit comments