Merge pull request #9409 from Icinga/feature/disallow-empty-object-names

Disallow empty object names
This commit is contained in:
Julian Brost 2022-08-11 16:53:28 +02:00 committed by GitHub
commit d3cca0e621
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ private:
abstract class ConfigObject : ConfigObjectBase < ConfigType
{
[config, no_user_modify] String __name (Name);
[config, no_user_modify] String "name" (ShortName) {
[config, no_user_modify, required] String "name" (ShortName) {
get {{{
String shortName = m_ShortName.load();
if (shortName.IsEmpty())