2018-03-28 22:48:47 -07:00
|
|
|
import * as mongo from 'mongodb';
|
2018-03-28 09:20:40 -07:00
|
|
|
import db from '../../../db/mongodb';
|
2017-11-20 10:40:09 -08:00
|
|
|
|
2018-03-28 22:48:47 -07:00
|
|
|
const SwSubscription = db.get<ISwSubscription>('swSubscriptions');
|
|
|
|
export default SwSubscription;
|
|
|
|
|
|
|
|
export interface ISwSubscription {
|
|
|
|
_id: mongo.ObjectID;
|
|
|
|
userId: mongo.ObjectID;
|
|
|
|
endpoint: string;
|
|
|
|
auth: string;
|
|
|
|
publickey: string;
|
|
|
|
}
|