mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:53:08 +02:00
11 lines
261 B
TypeScript
11 lines
261 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);
|
||
|
}
|