diff --git a/lam/HISTORY b/lam/HISTORY index 3e83282e..948646fc 100644 --- a/lam/HISTORY +++ b/lam/HISTORY @@ -1,3 +1,7 @@ +June 2017 + - Support multiple configurations for same account type + + 15.03.2017 5.7 - 2-factor authentication for admin login and self service with privacyIDEA - PDF files use DejaVu serif font for better readability and more supported characters (e.g. Cyrillic) diff --git a/lam/VERSION b/lam/VERSION index 760606e1..3c50e8cb 100644 --- a/lam/VERSION +++ b/lam/VERSION @@ -1 +1 @@ -5.7 +5.8.DEV diff --git a/lam/lib/baseType.inc b/lam/lib/baseType.inc index 5833d189..1e9d5b98 100644 --- a/lam/lib/baseType.inc +++ b/lam/lib/baseType.inc @@ -175,8 +175,13 @@ class baseType { return array(); } + /** + * Returns if this account type supports multiple configurations. + * + * @return boolean multiple configs supported + */ public function supportsMultipleConfigs() { - return false; + return true; } }