+
+
SSO Provider Created
+
+ Add this redirect URL to your identity provider.
+
+
+
+
+
+
+
+
+ );
+}
+
+export default function SsoProviderEditOverlay({
+ children,
+ provider,
+ userGroups,
+}: {
+ children: React.ReactNode;
+ provider?: SsoProviderUiModel;
+ userGroups: UserGroupExtended[];
+}) {
+ const [open, setOpen] = useState(false);
+ const { openDialog } = useDialog();
+ const form = useForm<
+ z.input