Skip to content
Snippets Groups Projects
Commit 3711bd44 authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

Fix #819

parent 0111d727
No related branches found
No related tags found
Loading
Pipeline #57598 passed
......@@ -96,6 +96,12 @@ registry_mesurement:
name:
not_blank: Vous devez renseigner un nom
registry_tool:
name:
not_blank: Vous devez renseigner un nom
type:
not_null: Vous devez renseigner un type
registry_treatment_data_category:
name:
not_blank: Vous devez renseigner un nom
......
......@@ -2,14 +2,14 @@ App\Domain\Registry\Model\Tool:
properties:
name:
- NotBlank:
message: 'registry.tool.name.not_blank'
message: 'registry_tool.name.not_blank'
groups: ['default']
- Length:
max: 255
groups: ['default']
type:
- NotNull:
message: 'registry.tool.type.not_null'
message: 'registry_tool.type.not_null'
groups: ['default']
manager:
- Length:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment