export const MSG_CODE_LEN = 8; export const MSG_STATUS = { NORMAL: 0, BLOCKED: 1 } export const MSG_TYPE = { TEXT: 0, RICH_TEXT: 1, IMG: 2 } export const CHANNEL_PREFIX = { SYS: 'sys', WORLD: 'new_world', GUILD: 'new_guild', } export const ON_MSG_ROUTE = 'onMessage'; export const ON_GROUP_MSG_ROUTE = 'onGroupMessage'; export const ON_ADD_CHANNEL_ROUTE = 'onAddChannel'; export const DEFAULT_MSG_PER_PAGE = 10;