result.js 442 B

123456789101112131415
  1. module.exports = {};
  2. function define( key, value ) {
  3. module.exports[ key ] = value;
  4. }
  5. define( 'SUCCESS', 0 );
  6. // Chat room related consts.
  7. define( 'INVALID_CHATROOMID', 1000 );
  8. define( 'INVALID_CHATROOMID_MSG', 'Invalid chat room id! Space, tab and new line are not allowed in chat room id!' );
  9. define( 'INVALID_GROUPID', 2000 );
  10. define( 'INVALID_GROUPID_MSG', 'Invalid group id! Space, tab and new line are not allowed in group id!' );