mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
14 lines
No EOL
349 B
JavaScript
14 lines
No EOL
349 B
JavaScript
const db = require('../config/db.js')
|
|
const { ObjectId } = require('mongodb');
|
|
|
|
|
|
class AuthUserAssociation {
|
|
constructor(authProviderId, authId, userId) {
|
|
this._id = new ObjectId();
|
|
this.authProvider_id = authProviderId;
|
|
this.auth_id = authId;
|
|
this.user_id = userId;
|
|
}
|
|
}
|
|
|
|
module.exports = new AuthUserAssociation; |