mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-30 09:53:02 +00:00
[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';
|
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 {
|
export function validateFileName(name: string): boolean {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue