diff --git a/thehive/app/org/thp/thehive/controllers/v0/Properties.scala b/thehive/app/org/thp/thehive/controllers/v0/Properties.scala index 31d37efcbb..86797e1ee6 100644 --- a/thehive/app/org/thp/thehive/controllers/v0/Properties.scala +++ b/thehive/app/org/thp/thehive/controllers/v0/Properties.scala @@ -222,7 +222,7 @@ class Properties @Inject() ( lazy val caseTemplate: List[PublicProperty[_, _]] = PublicPropertyListBuilder[CaseTemplateSteps] - .property("name", UniMapping.string)(_.field.readonly) + .property("name", UniMapping.string)(_.field.updatable) .property("displayName", UniMapping.string)(_.field.updatable) .property("titlePrefix", UniMapping.string.optional)(_.field.updatable) .property("description", UniMapping.string.optional)(_.field.updatable) diff --git a/thehive/app/org/thp/thehive/controllers/v1/Properties.scala b/thehive/app/org/thp/thehive/controllers/v1/Properties.scala index 9f99cbcac8..f93bf3bf24 100644 --- a/thehive/app/org/thp/thehive/controllers/v1/Properties.scala +++ b/thehive/app/org/thp/thehive/controllers/v1/Properties.scala @@ -141,7 +141,7 @@ class Properties @Inject() ( lazy val caseTemplate: List[PublicProperty[_, _]] = PublicPropertyListBuilder[CaseTemplateSteps] - .property("name", UniMapping.string)(_.field.readonly) + .property("name", UniMapping.string)(_.field.updatable) .property("displayName", UniMapping.string)(_.field.updatable) .property("titlePrefix", UniMapping.string.optional)(_.field.updatable) .property("description", UniMapping.string.optional)(_.field.updatable)