diff --git a/obp-api/src/main/resources/props/sample.props.template b/obp-api/src/main/resources/props/sample.props.template index 517b43c26..1468010a1 100644 --- a/obp-api/src/main/resources/props/sample.props.template +++ b/obp-api/src/main/resources/props/sample.props.template @@ -865,7 +865,9 @@ create_just_in_time_entitlements=false # if create_just_in_time_entitlements=true then OBP does the following: # If a user is trying to use a Role (via an endpoint) and the user could grant them selves the required Role(s), then OBP automatically grants the Role! # i.e. if the User already has canCreateEntitlementAtOneBank or canCreateEntitlementAtAnyBank and then OBP will auto grant a role that could be granted by a manual process anyway. -# This speeds up the process of granting of roles. Certain roles are excluded from this automation. +# This speeds up the process of granting of roles. Certain roles are excluded from this automation: +# - CanCreateEntitlementAtOneBank +# - CanCreateEntitlementAtAnyBank # If create_just_in_time_entitlements is again set to false after it was true for a while, any auto granted Entitlements to roles are kept in place. # Note: In the entitlements model we set createdbyprocess="create_just_in_time_entitlements". For manual operations we set createdbyprocess="manual" # ------------------------------------------------------------- diff --git a/obp-api/src/main/scala/code/api/util/Glossary.scala b/obp-api/src/main/scala/code/api/util/Glossary.scala index cee7c95e1..7a7657934 100644 --- a/obp-api/src/main/scala/code/api/util/Glossary.scala +++ b/obp-api/src/main/scala/code/api/util/Glossary.scala @@ -643,7 +643,9 @@ object Glossary extends MdcLoggable { |If Just in Time Entitlements are enabled then OBP does the following: |If a user is trying to use a Role (via an endpoint) and the user could grant them selves the required Role(s), then OBP automatically grants the Role. |i.e. if the User already has canCreateEntitlementAtOneBank or canCreateEntitlementAtAnyBank then OBP will automatically grant a role that would be granted by a manual process anyway. - |This speeds up the process of granting of roles. Certain roles are excluded from this automation. + |This speeds up the process of granting of roles. Certain roles are excluded from this automation: + | - CanCreateEntitlementAtOneBank + | - CanCreateEntitlementAtAnyBank |If create_just_in_time_entitlements is again set to false after it was true for a while, any auto granted Entitlements to roles are kept in place. |Note: In the entitlements model we set createdbyprocess=create_just_in_time_entitlements. For manual operations we set createdbyprocess=manual |