Files
chat/server/lib/const.ts

47 lines
656 B
TypeScript
Raw Normal View History

2026-04-25 16:36:34 +08:00
export const NAME_REGEXP =
/^([0-9a-zA-Z]{1,2}|[\u4e00-\u9eff]|[\u3040-\u309Fー]|[\u30A0-\u30FF]){1,8}$/;
/**
* TODO: 待实现权限相关逻辑
*
*
* key为权限
* value为默认值
*/
export const BUILTIN_GROUP_PERM = {
/**
*
*/
displayChannel: true,
/**
*
*/
manageChannel: false,
/**
*
*/
manageRole: false,
/**
*
*/
manageGroup: false,
/**
*
*/
sendMessage: true,
/**
*
*/
sendImage: true,
};
/**
* id
*/
export const SYSTEM_USERID = '000000000000000000000000';