Skip to content

Commit

Permalink
Update JWT access instructions in Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
bcmmbaga committed Dec 12, 2023
1 parent dd35270 commit cd846d7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/views/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const Settings = () => {
const [groupsPropagationEnabled, setGroupsPropagationEnabled] =
useState(true);
const [jwtGroupsClaimName, setJwtGroupsClaimName] = useState("");
const [jwtAllowGroups, setJwtAllowGroups ] = useState<string[]>([]);
const [jwtAllowGroups, setJwtAllowGroups] = useState<string[]>([]);
const [confirmModal, confirmModalContextHolder] = Modal.useModal();
const { confirm } = Modal;

Expand Down Expand Up @@ -888,7 +888,8 @@ export const Settings = () => {
marginBottom: "5px",
}}
>
Specify the JWT allow group name for allowing access, e.g., VPN user.
Specify the JWT allow group name for granting access, e.g., VPN user.
Users without a specified JWT group will have their authentication rejected.
</Paragraph>
</Col>
</Row>
Expand Down

0 comments on commit cd846d7

Please sign in to comment.