mirror of
https://github.com/sim1222/misskey.git
synced 2025-06-20 10:48:02 +09: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);
|
|
}
|