From 5e72e6fefe40069f89a2c487373dfa6ef284c563 Mon Sep 17 00:00:00 2001 From: hongwei Date: Thu, 10 Sep 2020 11:23:24 +0200 Subject: [PATCH] feature/added glossary_requires_role to release_notes and sample.props.template --- obp-api/src/main/resources/props/sample.props.template | 5 +++-- release_notes.md | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/obp-api/src/main/resources/props/sample.props.template b/obp-api/src/main/resources/props/sample.props.template index 7ef2f0047..0529e157d 100644 --- a/obp-api/src/main/resources/props/sample.props.template +++ b/obp-api/src/main/resources/props/sample.props.template @@ -70,9 +70,10 @@ connector=mapped ## So if you want the new endpoints shown timely, set this value to a small number. resourceDocsObp.cache.ttl.seconds=3600 -## This can change the behavior of `Get Resource Docs`. If we set it to `true`, OBP will check the authentication and CanReadResourceDoc Role -# the default value is false, so the `Get Resource Docs` is anonymous as default. +## This can change the behavior of `Get Resource Docs`/`Get API Glossary`. If we set it to `true`, OBP will check the authentication and CanReadResourceDoc/CanReadGlossary Role +# the default value is false, so the `Get Resource Docs`/`Get API Glossary` is anonymous as default. resource_docs_requires_role=false +glossary_requires_role=false ## enable logging all the database queries in log file diff --git a/release_notes.md b/release_notes.md index 8e64b1f3e..28678a80c 100644 --- a/release_notes.md +++ b/release_notes.md @@ -3,6 +3,8 @@ ### Most recent changes at top of file ``` Date Commit Action +10/09/2020 95cd5329 Added props: glossary_requires_role. default is false. If set it as `true`, then OBP will + check the authentication and CanReadGlossary Role for the endpoint: `Get API Glossary`. 12/08/2020 51621aa1 Added props: webui_legal_notice_html_text. If we set the props, the content will be showed as the legal notice on the registration page 11/08/2020 5319a5f8 WARNING: Added new account routing system. - Impacted endpoints: Create Account, Create Account (POST) and Update Account.