WIP: first pass, massive refactor of model imports

This commit is contained in:
Danny Avila 2025-05-30 12:54:24 -04:00
parent c682d45fb2
commit ab5450be8b
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956
53 changed files with 179 additions and 72 deletions

View file

@ -1,11 +1,14 @@
const jwt = require('jsonwebtoken');
const mongoose = require('mongoose');
const {
verifyTOTP,
verifyBackupCode,
getTOTPSecret,
} = require('~/server/services/twoFactorService');
const { setAuthTokens } = require('~/server/services/AuthService');
const { User, logger } = require('@librechat/data-schemas');
const { logger } = require('@librechat/data-schemas');
const User = mongoose.models.User;
/**
* Verifies the 2FA code during login using a temporary token.