From e91844e3a3295c51078f53abdddf51181d2a320e Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 10 Jun 2010 18:40:57 +0000 Subject: [PATCH] Monotone-Parent: ddb6d1e34096a18e84b736ef11f42b6e70af2cec Monotone-Revision: 227d08b1bace5a1e7b0760cc82dc7381016175ae Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-06-10T18:40:57 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ SoObjects/SOGo/SOGoSystemDefaults.h | 1 + SoObjects/SOGo/SOGoSystemDefaults.m | 5 +++++ 3 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index dd5f51826..933a28faf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-06-10 Wolfgang Sourdeau + + * SoObjects/SOGo/SOGoSystemDefaults.m (-CASLogoutEnabled): new + method that returns whether the "SOGoCASLogoutEnabled" ud is set. + 2010-06-09 Wolfgang Sourdeau * SoObjects/SOGo/SOGoUserFolder.m (_subFoldersFromFolder:): diff --git a/SoObjects/SOGo/SOGoSystemDefaults.h b/SoObjects/SOGo/SOGoSystemDefaults.h index e5cc39534..db5e63809 100644 --- a/SoObjects/SOGo/SOGoSystemDefaults.h +++ b/SoObjects/SOGo/SOGoSystemDefaults.h @@ -63,6 +63,7 @@ - (NSString *) authenticationType; - (NSString *) CASServiceURL; +- (BOOL) CASLogoutEnabled; - (BOOL) enablePublicAccess; diff --git a/SoObjects/SOGo/SOGoSystemDefaults.m b/SoObjects/SOGo/SOGoSystemDefaults.m index 5825285de..bc47d6e85 100644 --- a/SoObjects/SOGo/SOGoSystemDefaults.m +++ b/SoObjects/SOGo/SOGoSystemDefaults.m @@ -296,6 +296,11 @@ BootstrapNSUserDefaults () return [self stringForKey: @"SOGoCASServiceURL"]; } +- (BOOL) CASLogoutEnabled +{ + return [self boolForKey: @"SOGoCASLogoutEnabled"]; +} + - (BOOL) enablePublicAccess { return [self boolForKey: @"SOGoEnablePublicAccess"];