fix missing authentication predicate

This commit is contained in:
Rick Watson 2019-08-10 12:37:54 +01:00
parent 15ae0bb248
commit 29906a1d97

View File

@ -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: