This commit is contained in:
Mike Fitzpatrick
2019-08-12 17:44:01 -04:00
parent 0f618fdd78
commit f0460a1b76
21 changed files with 432 additions and 78 deletions

View File

@@ -51,3 +51,11 @@ export const API_ENDPOINTS = {
export const PERMISSIONS = {
FACEBOOK: ['email', 'public_profile'],
};
export const PHONE_TYPES = {
HOME: { label: 'home', value: 'home' },
MOBILE: { label: 'mobile', value: 'mobile' },
WORK: { label: 'work', value: 'work' },
};
export const PHONE_TYPE_DEFAULT = PHONE_TYPES.HOME.value;