How to use the yoti/src/yoti_common/constants.ATTR_EMAIL_ADDRESS function in yoti

To help you get started, we’ve selected a few yoti examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github getyoti / yoti-node-sdk / examples / profile / controllers / profile.controller.js View on Github external
case constants.ATTR_GIVEN_NAMES:
        attributes.push(createAttributeItem(attribute, 'Given names', 'yoti-icon-profile'));
        break;
      case constants.ATTR_DATE_OF_BIRTH:
        attributes.push(createAttributeItem(attribute, 'Date of birth', 'yoti-icon-calendar'));
        break;
      case constants.ATTR_GENDER:
        attributes.push(createAttributeItem(attribute, 'Gender', 'yoti-icon-gender'));
        break;
      case constants.ATTR_NATIONALITY:
        attributes.push(createAttributeItem(attribute, 'Nationality', 'yoti-icon-profile'));
        break;
      case constants.ATTR_PHONE_NUMBER:
        attributes.push(createAttributeItem(attribute, 'Mobile number', 'yoti-icon-phone'));
        break;
      case constants.ATTR_EMAIL_ADDRESS:
        attributes.push(createAttributeItem(attribute, 'Email address', 'yoti-icon-email'));
        break;
      case constants.ATTR_POSTAL_ADDRESS:
        attributes.push(createAttributeItem(attribute, 'Address', 'yoti-icon-address'));
        break;
      case constants.ATTR_DOCUMENT_DETAILS:
        attributes.push(createAttributeItem(attribute, 'Document Details', 'yoti-icon-profile'));
        break;
      case constants.ATTR_STRUCTURED_POSTAL_ADDRESS:
        attributes.push(createAttributeItem(attribute, 'Structured Address', 'yoti-icon-address'));
        break;
      case constants.ATTR_DOCUMENT_IMAGES:
        attributes.push(createAttributeItem(attribute, 'Document Images', 'yoti-icon-profile'));
        break;
      default:
        attributes.push(createAttributeItem(attribute, attribute.getName().replace('_', ' '), 'yoti-icon-profile'));