You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AuthenticationEvents.js 521B

12345678910111213
  1. const AuthenticationEvents = {
  2. /**
  3. * Event callback arguments:
  4. * function(authenticationEnabled, userIdentity)
  5. * authenticationEnabled - indicates whether authentication has been enabled
  6. * in this session
  7. * userIdentity - if user has been logged in then it contains user name. If
  8. * contains 'null' or 'undefined' then user is not logged in.
  9. */
  10. IDENTITY_UPDATED: 'authentication.identity_updated'
  11. };
  12. module.exports = AuthenticationEvents;