From ce71e0924709264255a86510e707004da4033fd0 Mon Sep 17 00:00:00 2001 From: Phil Friesen Date: Thu, 7 Apr 2016 14:22:15 -0400 Subject: [PATCH] Added documentation to CHANGES. --- CHANGES | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index cedcd6f..0e84f16 100644 --- a/CHANGES +++ b/CHANGES @@ -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', + }, + ... + })