mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
Use createIndex() instead of index() to avoid deprecation warnings
This commit is contained in:
parent
97c4be963c
commit
bce987a7fa
@ -2,7 +2,7 @@ import db from '../../db/mongodb';
|
||||
|
||||
const collection = db.get('access_tokens');
|
||||
|
||||
(collection as any).index('token'); // fuck type definition
|
||||
(collection as any).index('hash'); // fuck type definition
|
||||
(collection as any).createIndex('token'); // fuck type definition
|
||||
(collection as any).createIndex('hash'); // fuck type definition
|
||||
|
||||
export default collection as any; // fuck type definition
|
||||
|
@ -2,9 +2,9 @@ import db from '../../db/mongodb';
|
||||
|
||||
const collection = db.get('apps');
|
||||
|
||||
(collection as any).index('name_id'); // fuck type definition
|
||||
(collection as any).index('name_id_lower'); // fuck type definition
|
||||
(collection as any).index('secret'); // fuck type definition
|
||||
(collection as any).createIndex('name_id'); // fuck type definition
|
||||
(collection as any).createIndex('name_id_lower'); // fuck type definition
|
||||
(collection as any).createIndex('secret'); // fuck type definition
|
||||
|
||||
export default collection as any; // fuck type definition
|
||||
|
||||
|
@ -2,7 +2,7 @@ import db from '../../db/mongodb';
|
||||
|
||||
const collection = db.get('drive_files');
|
||||
|
||||
(collection as any).index('hash'); // fuck type definition
|
||||
(collection as any).createIndex('hash'); // fuck type definition
|
||||
|
||||
export default collection as any; // fuck type definition
|
||||
|
||||
|
@ -2,8 +2,8 @@ import db from '../../db/mongodb';
|
||||
|
||||
const collection = db.get('users');
|
||||
|
||||
(collection as any).index('username'); // fuck type definition
|
||||
(collection as any).index('token'); // fuck type definition
|
||||
(collection as any).createIndex('username'); // fuck type definition
|
||||
(collection as any).createIndex('token'); // fuck type definition
|
||||
|
||||
export default collection as any; // fuck type definition
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user