support multiple configs
This commit is contained in:
parent
4c04d67d02
commit
572935dde8
|
@ -1,3 +1,7 @@
|
||||||
|
June 2017
|
||||||
|
- Support multiple configurations for same account type
|
||||||
|
|
||||||
|
|
||||||
15.03.2017 5.7
|
15.03.2017 5.7
|
||||||
- 2-factor authentication for admin login and self service with privacyIDEA
|
- 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)
|
- PDF files use DejaVu serif font for better readability and more supported characters (e.g. Cyrillic)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
5.7
|
5.8.DEV
|
||||||
|
|
|
@ -175,8 +175,13 @@ class baseType {
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns if this account type supports multiple configurations.
|
||||||
|
*
|
||||||
|
* @return boolean multiple configs supported
|
||||||
|
*/
|
||||||
public function supportsMultipleConfigs() {
|
public function supportsMultipleConfigs() {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue