bypass the required group description.

moose

New Member
This is probably very simple, but is there a way to bypass the required group short description and long description (with the option to add them later)
So that when a user makes a group they just have to put a name if they like.
My users complain they have to write 2 descriptions. Thanks 😎
 
It seems possible yet
 
View previous replies…
I can change groups/entity/group.php
'short_description' => ['type' => self::STR, 'required' => false, 'maxLength' => 255, 'api' => true],
'description' => ['type' => self::STR, 'required' => false, 'api' => true],
but then I would fail my check... :confused:
 
I can change groups/entity/group.php
'short_description' => ['type' => self::STR, 'required' => false, 'maxLength' => 255, 'api' => true],
'description' => ['type' => self::STR, 'required' => false, 'api' => true],
but then I would fail my check... :confused:
mooseI recommend you create new add-on and move these changes to new add-on. Otherwise, you will lost your changes when update groups add-on.
 
Back
Top