2017-01-17 09:12:33 +09:00
|
|
|
import db from '../../db/mongodb';
|
|
|
|
|
2017-01-17 10:39:21 +09:00
|
|
|
const collection = db.get('apps');
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-01-17 10:39:21 +09:00
|
|
|
(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
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-01-18 16:30:42 +09:00
|
|
|
export default collection as any; // fuck type definition
|