support multiple configs

This commit is contained in:
Roland Gruber 2017-03-18 11:28:21 +01:00
parent 4c04d67d02
commit 572935dde8
3 changed files with 11 additions and 2 deletions

View File

@ -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)

View File

@ -1 +1 @@
5.7
5.8.DEV

View File

@ -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;
}
}