我为我的用户列表实体禁用了删除操作按钮,现在我试图从我的实体而不是它设置“启用”布尔值字段。
我尝试过类似的事情:
entities:
User:
class: AppBundle\Base\Entity\User
controller: AppBundle\Controller\UserController
disabled_actions: ['delete']
list:
fields: ['id', 'email', 'fullName',]
actions:
fields: ['enabled', type: boolean]
当我将其放在列表->字段中时,它的工作方式就像布尔值一样,但是操作->字段始终会引发错误。