Skip to content

Commit

Permalink
Added manage config documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Aug 18, 2024
1 parent f9458eb commit 01eed85
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions server/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,15 @@ email:
environment: "local"
enabled: false

# The manage section determines if an external Manage is used to integrate with, or that a predefined, static list
# of applications is loaded to populate the application dropdown in the JS new-role form.
# To disable the integration with an external Manage instance, set enabled to False. When enabled is False the url is
# ignored then and the different manage entities are loaded from json files in `server/src/main/resources/manage`.
# Each *.json file in this directory corresponds with the contents of that specific entity_type.
# To test the provisioning (e.g. SCIM, EVA, Graphp) with real endpoints you can set the manage.local property below to
# False and then the provisioning.local.json file is used which is not in git as it is n .gitignore. You can safely
# configure real users / passwords and test against those. See server/src/main/java/access/manage/ManageConf.java
# and server/src/main/java/access/manage/LocalManage.java to see how it works.
manage:
# enabled: True

Check warning on line 165 in server/src/main/resources/application.yml

View workflow job for this annotation

GitHub Actions / Test documentation and generate openapi html documentation

165:1 [comments-indentation] comment not indented like content
enabled: False

Check warning on line 166 in server/src/main/resources/application.yml

View workflow job for this annotation

GitHub Actions / Test documentation and generate openapi html documentation

166:12 [truthy] truthy value should be one of [false, true]
Expand Down

0 comments on commit 01eed85

Please sign in to comment.