19 lines
662 B
JavaScript
19 lines
662 B
JavaScript
const axios = require('axios');
|
|
|
|
// Simple script to approve all pending devices for testing
|
|
async function approveAllDevices() {
|
|
try {
|
|
// First, we need to get an auth token - for now let's use the direct database approach
|
|
console.log('This script would need authentication. Instead, run these SQL commands:');
|
|
console.log('');
|
|
console.log('UPDATE devices SET is_approved = true, is_active = true WHERE is_approved = false;');
|
|
console.log('');
|
|
console.log('Or use the admin interface to approve devices individually.');
|
|
|
|
} catch (error) {
|
|
console.error('Error approving devices:', error.message);
|
|
}
|
|
}
|
|
|
|
approveAllDevices();
|