Match up JavaScript file names

This commit is contained in:
Yoshiyuki Tabata 2020-01-28 14:05:05 +09:00 committed by Stian Thorgersen
parent ba98669605
commit 7fcfdd57b7

View file

@ -381,21 +381,21 @@ The `META-INF/keycloak-scripts.json` is a file descriptor that provides metadata
"authenticators": [ "authenticators": [
{ {
"name": "My Authenticator", "name": "My Authenticator",
"fileName": "my-authenticator.js", "fileName": "my-script-authenticator.js",
"description": "My Authenticator from a JS file" "description": "My Authenticator from a JS file"
} }
], ],
"policies": [ "policies": [
{ {
"name": "My Policy", "name": "My Policy",
"fileName": "my-policy.js", "fileName": "my-script-policy.js",
"description": "My Policy from a JS file" "description": "My Policy from a JS file"
} }
], ],
"mappers": [ "mappers": [
{ {
"name": "My Mapper", "name": "My Mapper",
"fileName": "my-mapper.js", "fileName": "my-script-mapper.js",
"description": "My Mapper from a JS file" "description": "My Mapper from a JS file"
} }
] ]