diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-01-04 14:43:05 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-01-04 14:43:31 -0500 |
commit | c0e4d7bfa2181090f05d3b42ed9f9b135b43aea1 (patch) | |
tree | 325b671b5c2283bf8995d4d14c6816967ac3429a /plugins/CasAuthentication/README | |
parent | bcddcb38cebc5ffbffd3df61fb9acaf6f674b133 (diff) |
Add 'takeOverLogin' parameter for a real SSO feel
Diffstat (limited to 'plugins/CasAuthentication/README')
-rw-r--r-- | plugins/CasAuthentication/README | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/CasAuthentication/README b/plugins/CasAuthentication/README index 2ee54dc05..c17a28e54 100644 --- a/plugins/CasAuthentication/README +++ b/plugins/CasAuthentication/README @@ -21,6 +21,9 @@ password_changeable*: must be set to false. This plugin does not support changin server*: CAS server to authentication against port (443): Port the CAS server listens on. Almost always 443 path (): Path on the server to CAS. Usually blank. +takeOverLogin (false): Take over the main login action. If takeOverLogin is + set, anytime the standard username/password login form would be shown, + a CAS login will be done instead. * required default values are in (parenthesis) @@ -33,6 +36,7 @@ addPlugin('casAuthentication', array( 'autoregistration'=>true, 'server'=>'sso-cas.univ-rennes1.fr', 'port'=>443, - 'path'=>'' + 'path'=>'', + 'takeOverLogin'=>true )); |