From 2c62c96fee6a63949a33014a2f12e7e36a46e7b3 Mon Sep 17 00:00:00 2001 From: Paul Banks Date: Wed, 31 Jul 2019 23:23:00 +0100 Subject: [PATCH] Fix JSON example syntax in identity docs (#7227) --- website/source/docs/secrets/identity/index.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/secrets/identity/index.html.md b/website/source/docs/secrets/identity/index.html.md index 1aee17a18..091084c68 100644 --- a/website/source/docs/secrets/identity/index.html.md +++ b/website/source/docs/secrets/identity/index.html.md @@ -215,7 +215,7 @@ When a token is requested, the resulting template might be populated as: "color": "green", "userinfo": { "username": "bob", - "groups": ["web", "engr", "default] + "groups": ["web", "engr", "default"] "nbf": 1561411915, } @@ -233,7 +233,7 @@ which would be merged with the base OIDC claims into the final token: "color": "green", "userinfo": { "username": "bob", - "groups": ["web", "engr", "default] + "groups": ["web", "engr", "default"] }, "nbf": 1561411915, }