mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-02 08:46:38 +00:00
Fix lint
This commit is contained in:
@@ -23,7 +23,7 @@ export type CheckOrgAccessPolicyResult = {
|
||||
compliant: boolean;
|
||||
maxPasswordAgeDays: number;
|
||||
passwordAgeDays: number;
|
||||
}
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -36,9 +36,6 @@ export async function enforceResourceSessionLength(
|
||||
|
||||
export async function checkOrgAccessPolicy(
|
||||
props: CheckOrgAccessPolicyProps
|
||||
): Promise<{
|
||||
success: boolean;
|
||||
error?: string;
|
||||
}> {
|
||||
return { success: true };
|
||||
): Promise<CheckOrgAccessPolicyResult> {
|
||||
return { allowed: true };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user