2018-02-02 00:06:01 +01:00
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import deepcopy = require('deepcopy');
|
2018-03-28 18:20:40 +02:00
|
|
|
import db from '../../../db/mongodb';
|
2017-01-17 01:12:33 +01:00
|
|
|
|
2018-02-02 00:06:01 +01:00
|
|
|
const Signin = db.get<ISignin>('signin');
|
|
|
|
export default Signin;
|
|
|
|
|
|
|
|
export interface ISignin {
|
|
|
|
_id: mongo.ObjectID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pack a signin record for API response
|
|
|
|
*
|
|
|
|
* @param {any} record
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
export const pack = (
|
|
|
|
record: any
|
|
|
|
) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
|
|
|
|
const _record = deepcopy(record);
|
|
|
|
|
|
|
|
// Rename _id to id
|
|
|
|
_record.id = _record._id;
|
|
|
|
delete _record._id;
|
|
|
|
|
|
|
|
resolve(_record);
|
|
|
|
});
|