Add shared password min/max length config

This commit is contained in:
Kimmo Puputti 2017-09-19 15:06:51 +03:00
parent a2bac38579
commit a225a77a8d

View file

@ -2,6 +2,9 @@ import { types } from 'sharetribe-sdk';
const { LatLng } = types;
export const PASSWORD_MIN_LENGTH = 8;
export const PASSWORD_MAX_LENGTH = 256;
/**
* Validator functions and helpers for Redux Forms
*/