fix: Add proper field types

Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
This commit is contained in:
Elizabeth Danzberger 2024-07-16 11:48:17 -04:00 committed by Julius Härtl
parent 05cbb4168e
commit 27271c5452
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -8,5 +8,9 @@
namespace OCP\Files\Template;
enum FieldType: string {
case PlainText = "plain-text";
case RichText = "rich-text";
case CheckBox = "checkbox";
case DropDownList = "drop-down-list";
case Picture = "picture";
case Date = "date";
}