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