From 29906a1d97526eae36d080bae355b857770db57f Mon Sep 17 00:00:00 2001 From: Rick Watson Date: Sat, 10 Aug 2019 12:37:54 +0100 Subject: [PATCH] fix missing authentication predicate --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 86e485b..25dcdb8 100644 --- a/README.md +++ b/README.md @@ -318,8 +318,8 @@ On successful authentication, the /rest/signIn endpoint issues a JWT which is th Predicate | Description -------------------- | ----------- NONE_REQUIRED | No authentication is required. -IS_AUTHENTICATED | Any authentication is permitted. -IS_AUTHENTICATED | Any authentication is permitted. +IS_AUTHENTICATED | Any authenticated principal is permitted. +IS_ADMIN | The authenticated principal must be an admin. You can use the security manager to wrap any web handler with an authentication predicate: