Sharkey/src/api/models/user.ts

15 lines
387 B
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
const collection = global.db.collection('users');
collection.createIndex('username');
collection.createIndex('token');
export default collection;
export function validateUsername(username: string): boolean {
return /^[a-zA-Z0-9\-]{3,20}$/.test(username);
}
2017-01-06 08:35:07 +02:00
export function isValidBirthday(birthday: string): boolean {
return /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
}