Skip to content

feat: integrate backend with idp sync page #14755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Sep 24, 2024
Prev Previous commit
Next Next commit
chore: document uuid regex
  • Loading branch information
jaaydenh committed Sep 24, 2024
commit 3db9f487f0d38207c5bc48102833f10e942d4bf7
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ interface PillListProps {
roles: readonly string[];
}

// used to check if the role is a UUID
const UUID =
/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
/^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;

export const IdpPillList: FC<PillListProps> = ({ roles }) => {
return (
Expand Down