mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
fix: Add proper field types
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
This commit is contained in:
parent
05cbb4168e
commit
27271c5452
1 changed files with 5 additions and 1 deletions
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue