Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Added documentation to CHANGES.
Browse files Browse the repository at this point in the history
  • Loading branch information
philfriesen committed Apr 7, 2016
1 parent 5b5a3ee commit ce71e09
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,13 @@ Changes
- Initial version based on djangosaml2 supporting multi-tenant

0.20.1 (2016-04-06)
- Make djangosmal2 tenant support reading metadata from database
- Make djangosaml2 tenant support reading metadata from database by adding the following to settings.py:
SAML_CONFIG.update({
# Specifying 'inline': 'DB' means SAML metadata comes from the DB via the following method:
# tenant/models/Member.get_saml_metadata(self)
# Implement this method to retrieve the metadata from the table of your choice.
'metadata': {
'inline': 'DB',
},
...
})

0 comments on commit ce71e09

Please sign in to comment.