mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-13 00:26:55 -05:00
Flatten returned stats
This commit is contained in:
parent
8c440ffa6f
commit
af4d65e1c5
@ -40,11 +40,9 @@ router.get('/uploads', requireAuth('stats.get'), bodyVerifier(uploadProps), wrap
|
||||
date: upload.date,
|
||||
uid: upload.uid,
|
||||
key: upload.uploaderKey,
|
||||
file: {
|
||||
originalName: upload.file.originalName,
|
||||
size: upload.file.size,
|
||||
mime: upload.file.mime
|
||||
}
|
||||
originalName: upload.file.originalName,
|
||||
size: upload.file.size,
|
||||
mime: upload.file.mime
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -985,7 +985,9 @@ describe('Stats', () => {
|
||||
stat.should.have.property('date');
|
||||
stat.should.have.property('uid');
|
||||
stat.should.have.property('key');
|
||||
stat.should.have.property('file');
|
||||
stat.should.have.property('originalName');
|
||||
stat.should.have.property('size');
|
||||
stat.should.have.property('mime');
|
||||
|
||||
return util.logout(agent);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user