mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
|
import { Form, ValidatorsEx } from '@app/framework';
|
|
import { AppDto, CreateAppDto, UpdateAppDto } from './../services/apps.service';
|
|
|
|
export class CreateAppForm extends Form<FormGroup, CreateAppDto> {
|
|
constructor(formBuilder: FormBuilder) {
|
|
super(formBuilder.group({
|
|
name: ['',
|
|
[
|
|
Validators.required,
|
|
Validators.maxLength(40),
|
|
ValidatorsEx.pattern('[a-z0-9]+(\-[a-z0-9]+)*', 'Name can contain lower case letters (a-z), numbers and dashes between.')
|
|
]
|
|
]
|
|
}));
|
|
}
|
|
}
|
|
|
|
export class UpdateAppForm extends Form<FormGroup, UpdateAppDto, AppDto> {
|
|
constructor(formBuilder: FormBuilder) {
|
|
super(formBuilder.group({
|
|
label: ['',
|
|
[
|
|
Validators.maxLength(40)
|
|
]
|
|
],
|
|
description: ''
|
|
}));
|
|
}
|
|
}
|