/* * Squidex Headless CMS * * @license * Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved. */ import { FormControl, Validators } from '@angular/forms'; import { Form, ExtendedFormGroup } from '@app/framework'; import { UpsertCommentDto } from './../services/comments.service'; export class UpsertCommentForm extends Form { constructor() { super(new ExtendedFormGroup({ text: new FormControl('', Validators.nullValidator, ), })); } }