Fixed admin count endpoint

This commit is contained in:
Muhammad Ibrahim
2025-09-21 22:42:47 +01:00
parent 739ca6486a
commit 697da088d4
2 changed files with 2 additions and 15 deletions

View File

@@ -10,20 +10,9 @@ const { v4: uuidv4 } = require('uuid');
const router = express.Router();
const prisma = new PrismaClient();
// Check if any admin users exist (for first-time setup) - INTERNAL ONLY
// Check if any admin users exist (for first-time setup)
router.get('/check-admin-users', async (req, res) => {
try {
// Only allow this check from localhost or internal requests
const clientIP = req.ip || req.connection.remoteAddress;
const isLocalhost = clientIP === '127.0.0.1' || clientIP === '::1' || clientIP === '::ffff:127.0.0.1';
if (!isLocalhost && !req.headers.host?.includes('localhost')) {
return res.status(403).json({
error: 'Access denied - admin check only available locally',
hasAdminUsers: true // Assume admin exists for security
});
}
const adminCount = await prisma.users.count({
where: { role: 'admin' }
});