mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-05 17:05:55 +02:00
15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
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);
|
|
}
|
|
|
|
export function isValidBirthday(birthday: string): boolean {
|
|
return /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
|
|
}
|