The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/apps/meteor/tests/data/user.ts

36 lines
1.1 KiB

export const username = 'user.test';
export const email = `${username}@rocket.chat`;
export const password = 'rocket.chat';
export const reason = 'rocket.chat.reason';
export const adminUsername = 'rocketchat.internal.admin.test';
export const adminEmail = `${adminUsername}@rocket.chat`;
export const adminPassword = adminUsername;
export const preferences = {
data: {
newRoomNotification: 'door',
newMessageNotification: 'chime',
muteFocusedConversations: true,
clockMode: 1,
useEmojis: true,
convertAsciiEmoji: true,
saveMobileBandwidth: true,
collapseMediaByDefault: false,
autoImageLoad: true,
emailNotificationMode: 'mentions',
unreadAlert: true,
notificationsSoundVolume: 100,
desktopNotifications: 'default',
pushNotifications: 'default',
enableAutoAway: true,
highlights: [],
desktopNotificationRequireInteraction: false,
hideUsernames: false,
hideRoles: false,
displayAvatars: true,
hideFlexTab: false,
sendOnEnter: 'normal',
idleTimeLimit: 3600,
},
};
export type IUserCredentialsHeader = { 'X-Auth-Token': string; 'X-User-Id': string; };