merge_email_verifier #3

Merged
tracer merged 23 commits from merge_email_verifier into master 2022-11-04 10:35:23 +01:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit db245e6d35 - Show all commits

View File

@ -8,6 +8,7 @@ use EasyCorp\Bundle\EasyAdminBundle\Field\AssociationField;
use EasyCorp\Bundle\EasyAdminBundle\Field\CodeEditorField; use EasyCorp\Bundle\EasyAdminBundle\Field\CodeEditorField;
use EasyCorp\Bundle\EasyAdminBundle\Field\IdField; use EasyCorp\Bundle\EasyAdminBundle\Field\IdField;
use EasyCorp\Bundle\EasyAdminBundle\Field\TextareaField; use EasyCorp\Bundle\EasyAdminBundle\Field\TextareaField;
use EasyCorp\Bundle\EasyAdminBundle\Field\TextEditorField;
use EasyCorp\Bundle\EasyAdminBundle\Field\TextField; use EasyCorp\Bundle\EasyAdminBundle\Field\TextField;
class PagesCrudController extends AbstractCrudController class PagesCrudController extends AbstractCrudController
@ -24,7 +25,7 @@ class PagesCrudController extends AbstractCrudController
yield TextField::new(propertyName: 'name'); yield TextField::new(propertyName: 'name');
yield AssociationField::new(propertyName: 'owner'); yield AssociationField::new(propertyName: 'owner');
// yield CodeEditorField::new(propertyName: 'content') // yield CodeEditorField::new(propertyName: 'content')
yield TextareaField::new(propertyName: 'content') yield TextEditorField::new(propertyName: 'content')
->onlyOnForms(); ->onlyOnForms();
} }
} }