forked from FoundKeyGang/FoundKey
[Server] Add 'hash' index to the drive_files collection
This commit is contained in:
parent
ac661eacc0
commit
2230360e7e
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,10 @@
|
|||
import db from '../../db/mongodb';
|
||||
|
||||
export default db.get('drive_files') as any; // fuck type definition
|
||||
const collection = db.get('drive_files');
|
||||
|
||||
(collection as any).index('hash'); // fuck type definition
|
||||
|
||||
export default collection as any; // fuck type definition
|
||||
|
||||
export function validateFileName(name: string): boolean {
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue