much more flesh in openapi, doc page

This commit is contained in:
2023-03-29 18:09:45 -05:00
parent 4a87856601
commit b0d0c0ce6c
7 changed files with 686 additions and 135 deletions

View File

@ -98,4 +98,14 @@ public enum QFieldType
{
return this == QFieldType.STRING || this == QFieldType.TEXT || this == QFieldType.HTML || this == QFieldType.PASSWORD;
}
/*******************************************************************************
**
*******************************************************************************/
public boolean isNumeric()
{
return this == QFieldType.INTEGER || this == QFieldType.DECIMAL;
}
}