mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
import { GeneralPermissionActions, OrgPermissionSubjects } from "@app/context";
|
|
import { withPermission } from "@app/hoc";
|
|
|
|
import { OrgSSOSection } from "./OrgSSOSection";
|
|
|
|
export const OrgAuthTab = withPermission(
|
|
() => {
|
|
return (
|
|
<div>
|
|
<OrgSSOSection />
|
|
</div>
|
|
);
|
|
},
|
|
{ action: GeneralPermissionActions.Read, subject: OrgPermissionSubjects.Sso }
|
|
);
|