2024-10-12 13:04:51 +03:00
|
|
|
const authRouter = require('express').Router();
|
2024-10-12 13:23:16 +03:00
|
|
|
const { TOKEN } = require('../const');
|
|
|
|
|
2024-10-12 13:04:51 +03:00
|
|
|
|
|
|
|
module.exports = authRouter;
|
|
|
|
|
|
|
|
authRouter.post('/login', (req, res) => {
|
|
|
|
const { email, password } = req.body;
|
|
|
|
console.log(`Login with email=${email} and password=${password}`);
|
|
|
|
|
|
|
|
if (email === 'admin@admin.admin' && password === 'admin') {
|
2024-10-12 13:23:16 +03:00
|
|
|
res.status(200).send({ 'status': 'OK', 'data': `${TOKEN}` });
|
2024-10-12 13:04:51 +03:00
|
|
|
} else {
|
|
|
|
res.status(401).send({ 'status': 'Failed!', 'data': 'Invalid email or password' });
|
|
|
|
}
|
|
|
|
});
|