diff --git a/server/AyaNova/models/GlobalBizSettings.cs b/server/AyaNova/models/GlobalBizSettings.cs index 37f65972..cd982151 100644 --- a/server/AyaNova/models/GlobalBizSettings.cs +++ b/server/AyaNova/models/GlobalBizSettings.cs @@ -46,36 +46,36 @@ namespace AyaNova.Models public string CustomerServiceRequestInfoHTML { get; set; } public bool CustomerAllowCSR { get; set; } - public List CustomerAllowCSRInTags { get; set; } - public List CustomerAllowCSROutTags { get; set; } + public List CustomerAllowCSRInTags { get; set; } = new List(); + public List CustomerAllowCSROutTags { get; set; } = new List(); public bool CustomerAllowViewWO { get; set; } - public List CustomerAllowViewWOInTags { get; set; } - public List CustomerAllowViewWOOutTags { get; set; } + public List CustomerAllowViewWOInTags { get; set; } = new List(); + public List CustomerAllowViewWOOutTags { get; set; } = new List(); public bool CustomerAllowWOWiki { get; set; } - public List CustomerAllowWOWikiInTags { get; set; } - public List CustomerAllowWOWikiOutTags { get; set; } + public List CustomerAllowWOWikiInTags { get; set; } = new List(); + public List CustomerAllowWOWikiOutTags { get; set; } = new List(); public bool CustomerAllowUserSettings { get; set; } - public List CustomerAllowUserSettingsInTags { get; set; } - public List CustomerAllowUserSettingsOutTags { get; set; } + public List CustomerAllowUserSettingsInTags { get; set; } = new List(); + public List CustomerAllowUserSettingsOutTags { get; set; } = new List(); public bool CustomerAllowNotifyServiceImminent { get; set; } - public List CustomerAllowNotifyServiceImminentInTags { get; set; } - public List CustomerAllowNotifyServiceImminentOutTags { get; set; } + public List CustomerAllowNotifyServiceImminentInTags { get; set; } = new List(); + public List CustomerAllowNotifyServiceImminentOutTags { get; set; } = new List(); public bool CustomerAllowNotifyCSRAccepted { get; set; } - public List CustomerAllowNotifyCSRAcceptedInTags { get; set; } - public List CustomerAllowNotifyCSRAcceptedOutTags { get; set; } + public List CustomerAllowNotifyCSRAcceptedInTags { get; set; } = new List(); + public List CustomerAllowNotifyCSRAcceptedOutTags { get; set; } = new List(); public bool CustomerAllowNotifyCSRRejected { get; set; } - public List CustomerAllowNotifyCSRRejectedInTags { get; set; } - public List CustomerAllowNotifyCSRRejectedOutTags { get; set; } + public List CustomerAllowNotifyCSRRejectedInTags { get; set; } = new List(); + public List CustomerAllowNotifyCSRRejectedOutTags { get; set; } = new List(); public bool CustomerAllowNotifyWorkorderCreated { get; set; } - public List CustomerAllowNotifyWorkorderCreatedInTags { get; set; } - public List CustomerAllowNotifyWorkorderCreatedOutTags { get; set; } + public List CustomerAllowNotifyWorkorderCreatedInTags { get; set; } = new List(); + public List CustomerAllowNotifyWorkorderCreatedOutTags { get; set; } = new List(); diff --git a/server/AyaNova/resource/de.json b/server/AyaNova/resource/de.json index 670daa08..b5369de4 100644 --- a/server/AyaNova/resource/de.json +++ b/server/AyaNova/resource/de.json @@ -1693,6 +1693,7 @@ "Tags": "Kategorien", "Tag": "Tag", "TaggedWith": "Markiert mit", + "NotTaggedWith": "Nicht markiert mit", "UserTypeServiceContractor": "Subunternehmer", "AuthorizationRoles": "Autorisierungsrollen", "AuthorizationRoleNoRole": "Keine Rolle", diff --git a/server/AyaNova/resource/en.json b/server/AyaNova/resource/en.json index 5b5e85ff..d426b1bd 100644 --- a/server/AyaNova/resource/en.json +++ b/server/AyaNova/resource/en.json @@ -1693,6 +1693,7 @@ "Tags": "Tags", "Tag": "Tag", "TaggedWith": "Tagged with", + "NotTaggedWith": "Not tagged with", "UserTypeServiceContractor": "SubContractor user", "AuthorizationRoles": "Authorization roles", "AuthorizationRoleNoRole": "No role", diff --git a/server/AyaNova/resource/es.json b/server/AyaNova/resource/es.json index d3f39a8d..40b5e859 100644 --- a/server/AyaNova/resource/es.json +++ b/server/AyaNova/resource/es.json @@ -1693,6 +1693,7 @@ "Tags": "Etiquetas", "Tag": "Etiqueta", "TaggedWith": "Etiquetado con", + "NotTaggedWith": "No etiquetado con", "UserTypeServiceContractor": "Subcontratista", "AuthorizationRoles": "Roles de autorización", "AuthorizationRoleNoRole": "Sin rol", diff --git a/server/AyaNova/resource/fr.json b/server/AyaNova/resource/fr.json index 24e12214..114279f0 100644 --- a/server/AyaNova/resource/fr.json +++ b/server/AyaNova/resource/fr.json @@ -1693,6 +1693,7 @@ "Tags": "Balises", "Tag": "Balise", "TaggedWith": "Balisé avec", + "NotTaggedWith": "Non balisé avec", "UserTypeServiceContractor": "Sous-traitant", "AuthorizationRoles": "Rôles d'autorisation", "AuthorizationRoleNoRole": "Pas de rôle",