Skip to content

Commit

Permalink
render config value to string instead of an object (#11764)
Browse files Browse the repository at this point in the history
Co-authored-by: Sicco de Haan <[email protected]>
  • Loading branch information
catshapednoodles and Sicco de Haan authored Feb 7, 2025
1 parent 5adeb0b commit 597778f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dojo/settings/settings.dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ def saml2_attrib_map_format(dict):
"entityid": str(SAML2_ENTITY_ID),

# directory with attribute mapping
"attribute_map_dir": Path(BASEDIR) / "attribute-maps",
"attribute_map_dir": str(Path(BASEDIR) / "attribute-maps"),
# do now discard attributes not specified in attribute-maps
"allow_unknown_attributes": SAML_ALLOW_UNKNOWN_ATTRIBUTES,
# this block states what services we provide
Expand Down

0 comments on commit 597778f

Please sign in to comment.