Sharkey/src/api/models/access-token.ts
syuilo 19e12bf5cf ✌️
2017-01-17 10:39:21 +09:00

9 lines
228 B
TypeScript

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
export default collection;