Skip to content

Commit

Permalink
Update SubtaskDialog form and enhance OIDC scope
Browse files Browse the repository at this point in the history
  • Loading branch information
remyvdwereld committed Dec 4, 2024
1 parent 1697624 commit 4879cce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const SubtaskDialog: React.FC<Props> = ({ id }) => {

return (
<Dialog heading="Taak opvoeren" id={ id } >
<Form onSubmit={ onSubmit } formGrid={{ narrow: 4, medium: 6, wide: 10 }}>
<Form onSubmit={ onSubmit } formGrid={{ narrow: 4, medium: 6, wide: 10 }} >
<SelectField
name="workflow_option_id"
label="Selecteer een taak"
Expand Down
2 changes: 1 addition & 1 deletion src/app/utils/authConst.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const oidcConfig = {
client_id: `${ env.VITE_OIDC_CLIENT_ID }`,
redirect_uri: `${ env.VITE_OIDC_REDIRECT_URL }`,
response_type: "code",
scope: "openid",
scope: "openid email",
post_logout_redirect_uri: `${ env.VITE_OIDC_REDIRECT_URL }`,
metadata: {
issuer: "https://login.microsoftonline.com/72fca1b1-2c2e-4376-a445-294d80196804/v2.0",
Expand Down

0 comments on commit 4879cce

Please sign in to comment.