mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-21 05:44:48 +00: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);
|
||
|
}
|