您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AuthenticationEvents.js 518B

123456789101112
  1. var 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;