2016-12-28 23:49:51 +01: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 07:35:07 +01:00
|
|
|
|
|
|
|
export function isValidBirthday(birthday: string): boolean {
|
|
|
|
return /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
|
|
|
|
}
|