Skip to content

Commit

Permalink
feat: require verification on login (#2927)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Dec 6, 2022
1 parent bef1a6c commit efb8ae8
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion embedx/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -696,6 +696,9 @@
},
{
"$ref": "#/definitions/selfServiceWebHook"
},
{
"$ref": "#/definitions/selfServiceRequireVerifiedAddressHook"
}
]
},
Expand Down Expand Up @@ -782,7 +785,22 @@
"$ref": "#/definitions/selfServiceAfterOIDCLoginMethod"
},
"hooks": {
"$ref": "#/definitions/selfServiceHooks"
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/selfServiceWebHook"
},
{
"$ref": "#/definitions/selfServiceSessionRevokerHook"
},
{
"$ref": "#/definitions/selfServiceRequireVerifiedAddressHook"
}
]
},
"uniqueItems": true,
"additionalItems": false
}
}
},
Expand Down

0 comments on commit efb8ae8

Please sign in to comment.