violet_rails
violet_rails copied to clipboard
integer with optional decimal in API form
Is your feature request related to a problem? Please describe.
currently there is no way to enforce integers + decimals in API forms (we can enforce numbers, but not decimals)
Describe the solution you'd like

@donrestarone Let me know if this regex-pattern works.
\d+(\.\d+)?
@alis-khadka that worked! Thanks