all files / express-stormpath/lib/helpers/ index.js

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36                                                                     
'use strict';
 
module.exports = {
  authenticate: require('./authenticate'),
  collectFormErrors: require('./collect-form-errors'),
  exchangeStormpathToken: require('./exchange-stormpath-token'),
  createStormpathSession: require('./create-stormpath-session'),
  createSession: require('./create-session'),
  expandAccount: require('./expand-account'),
  getHost: require('./get-host'),
  getRequiredRegistrationFields: require('./get-required-registration-fields'),
  getAppModuleVersion: require('./get-app-module-version'),
  handleAcceptRequest: require('./handle-accept-request'),
  writeJsonError: require('./write-json-error'),
  writeFormError: require('./write-form-error'),
  loginResponder: require('./login-responder'),
  loginWithOAuthProvider: require('./login-with-oauth-provider'),
  prepAccountData: require('./prep-account-data'),
  render: require('./render'),
  bodyParser: require('./body-parser'),
  sanitizeFormData: require('./sanitize-form-data'),
  setTempCookie: require('./set-temp-cookie'),
  validateAccount: require('./validate-account'),
  xsrfValidator: require('./xsrf-validator'),
  revokeToken: require('./revoke-token'),
  getFormViewModel: require('./get-form-view-model').default,
  strippedAccountResponse: require('./stripped-account-response'),
  requiresOrganizationResolution: require('./requires-organization-resolution'),
  parentDomainRedirect: require('./parent-domain-redirect'),
  isRootDomainMultiTenantRequest: require('./is-root-domain-multi-tenant-request'),
  redirectToOrganization: require('./redirect-to-organization'),
  organizationResolutionGuard: require('./organization-resolution-guard'),
  CachedStore: require('./cached-store'),
  assertOrganizationIsMappedToApplication: require('./assert-org-mapped-to-app')
};