mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
import * as Yup from 'yup';
|
|
|
|
export const getBillingFormValidationSchema = () =>
|
|
Yup.object().shape({
|
|
plan_slug: Yup.string().required(),
|
|
period: Yup.string().required(),
|
|
license_code: Yup.string().trim(),
|
|
});
|