a bit refresh deployment

This commit is contained in:
2024-05-19 20:50:15 +03:00
parent 80f8cef142
commit 6651215eeb
2 changed files with 4 additions and 11 deletions

View File

@@ -4,15 +4,6 @@ router.get('/landing-data', (request, response) => {
response.send(require('./json/landing-data/success.json'));
});
router.post('/login', (req, response) => {
const { username, password } = req.body;
if (username === 'admin') {
response.send(require('./json/user/sitter.success.json'));
} else {
response.send(require('./json/landing-data/success.json'));
}
});
router.post('/search', (req, res) => {
const { search } = req.body;