Spaces:
Paused
Paused
Update app.js
Browse files
app.js
CHANGED
|
@@ -78,7 +78,7 @@ if (cluster.isPrimary) {
|
|
| 78 |
});
|
| 79 |
|
| 80 |
// ২. /profile পোস্ট রিকোয়েস্ট এন্ডপয়েন্ট
|
| 81 |
-
app.post('/
|
| 82 |
const { intdata, uid, full_name } = req.body;
|
| 83 |
|
| 84 |
console.log(`[Worker ${process.pid}] Processing /profile for UID: ${uid}`);
|
|
|
|
| 78 |
});
|
| 79 |
|
| 80 |
// ২. /profile পোস্ট রিকোয়েস্ট এন্ডপয়েন্ট
|
| 81 |
+
app.post('/profiles', async (req, res) => {
|
| 82 |
const { intdata, uid, full_name } = req.body;
|
| 83 |
|
| 84 |
console.log(`[Worker ${process.pid}] Processing /profile for UID: ${uid}`);
|