diff --git a/modules/consent/docs/consent.txt b/modules/consent/docs/consent.txt index d54ba710fb0bbcb4e7bbf7a0e2af2630ad9a048c..c3dd66730e2b09d5d2cb0d9753f10fa4c52046df 100644 --- a/modules/consent/docs/consent.txt +++ b/modules/consent/docs/consent.txt @@ -73,3 +73,19 @@ Example config using PostgreSQL database: 'checked' => TRUE ), +Disabling consent +----------------- + +It is possible to disable consent for a given service. You can add an option +in the matadata og the IdP, that wil disable consent for det given service. +Add 'consent.disable' array option and enter the entityids of the services, +that you do not want consent for. + +Example: + + 'consent.disable' => array( + 'sp.example.com', + 'sp2.example.com', + ... + ), + diff --git a/modules/consentAdmin/docs/consentAdmin.txt b/modules/consentAdmin/docs/consentAdmin.txt index 20e3d2a6d104401a72f126b12b3217940fddf954..a4e176a457c875746aef0ffa02fea0fab0f68fd3 100644 --- a/modules/consentAdmin/docs/consentAdmin.txt +++ b/modules/consentAdmin/docs/consentAdmin.txt @@ -46,7 +46,7 @@ module correctly, you need to set the configuration 'attributes.hash' according to the value of 'includeValues' configuration in the consent module. -You should also set the 'relaystate' configuration in order to pass on your +You should also set the 'returnURL' configuration in order to pass on your users when the press the 'Logout' link. What does consentAdmin do @@ -59,6 +59,8 @@ whether the user has given consent to the given service. By clicking the released to the service, when the user is accessing that service. consentAdmin are running the processing filters that have been defined for each service. +ConsentAdmin will not show services that consent has been disabled for in +the consent module. Processing filters ------------------ @@ -68,6 +70,6 @@ no filter is allowed to make userinteraction. It is up to the developers of the filters to respect the isPassive request. The prefered thing to do is to make your setup so that only filters that -modify attributes is run. Othervise it is recommended that tha developers of +modify attributes is run. Othervise it is recommended that developers of filters to throw a 'NoPassive' exception, if the filter can not run without userinteraction.