Fix lint issue

This commit is contained in:
Tuan Dang
2024-03-06 13:28:29 -08:00
parent 7d495cfea5
commit 35a5c9a67f
5 changed files with 4 additions and 5 deletions

View File

@ -335,7 +335,6 @@ export const ldapConfigServiceFactory = ({
};
const ldapLogin = async ({ externalId, username, firstName, lastName, emails, orgId, relayState }: TLdapLoginDTO) => {
// externalId + username
const appCfg = getConfig();
let userAlias = await userAliasDAL.findOne({
externalId,
@ -409,7 +408,6 @@ export const ldapConfigServiceFactory = ({
});
}
// query for user here
const user = await userDAL.findOne({ id: userAlias.userId });
const isUserCompleted = Boolean(user.isAccepted);

View File

@ -19,7 +19,7 @@ export const getDefaultOnPremFeatures = () => {
auditLogsRetentionDays: 0,
samlSSO: false,
scim: false,
ldap: true,
ldap: false,
status: null,
trial_end: null,
has_used_trial: true,

View File

@ -25,7 +25,7 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({
auditLogsRetentionDays: 0,
samlSSO: false,
scim: false,
ldap: true,
ldap: false,
status: null,
trial_end: null,
has_used_trial: true,

View File

@ -26,7 +26,7 @@ export type TFeatureSet = {
auditLogsRetentionDays: 0;
samlSSO: false;
scim: false;
ldap: true;
ldap: false;
status: null;
trial_end: null;
has_used_trial: true;

View File

@ -205,6 +205,7 @@ export const registerSignupRouter = async (server: FastifyZodProvider) => {
event: PostHogEventTypes.UserSignedUp,
distinctId: user.username ?? "",
properties: {
username: user.username,
email: user.email ?? "",
attributionSource: "Team Invite"
}