mirror of
https://github.com/9technologygroup/patchmon.net.git
synced 2025-11-07 07:23:22 +00:00
Fixed admin count endpoint
This commit is contained in:
@@ -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' }
|
||||
});
|
||||
|
||||
@@ -232,9 +232,7 @@ export const AuthProvider = ({ children }) => {
|
||||
if (response.ok) {
|
||||
const data = await response.json()
|
||||
console.log('Admin check response:', data) // Debug log
|
||||
// TEMPORARY DEBUG: Force admin setup for testing
|
||||
// setNeedsFirstTimeSetup(!data.hasAdminUsers)
|
||||
setNeedsFirstTimeSetup(true) // Force setup for testing
|
||||
setNeedsFirstTimeSetup(!data.hasAdminUsers)
|
||||
} else {
|
||||
console.log('Admin check failed:', response.status, response.statusText) // Debug log
|
||||
// If endpoint doesn't exist or fails, assume setup is needed
|
||||
|
||||
Reference in New Issue
Block a user