changing fields in account is done and upd chats retrieval

This commit is contained in:
Nikolai Petukhov
2024-10-04 15:53:50 +03:00
parent 86db5df813
commit 25c3e16c74
8 changed files with 81 additions and 15 deletions

View File

@@ -34,11 +34,13 @@ authRouter.post('/login', (req, res) => {
// Invalid identification
if (!user) {
res.status(401).send({message: 'Invalid credentials (id)'});
return;
}
// Invalid authentication
if (!password || password !== user.password) {
res.status(401).send({message: 'Invalid credentials (password)'});
return;
}
// Now, authorization
@@ -59,10 +61,12 @@ authRouter.post('/reg', (req, res) => {
// Invalid identification
if (user) {
res.status(409).send({message: 'Such id already exists'});
return;
}
if (!name || !password || !nickname) {
res.status(401).send({message: 'Empty or invalid fields'});
return;
}
// Add to 'DB'

View File

@@ -16,6 +16,7 @@ changeRouter.post('/nickname', (req, res) => {
// Invalid identification
if (!user) {
res.status(401).send({message: 'Invalid credentials (id)'});
return;
}
const updatedUser = {
@@ -42,6 +43,7 @@ changeRouter.post('/password', (req, res) => {
// Invalid identification
if (!user) {
res.status(401).send({message: 'Invalid credentials (id)'});
return;
}
// Delete the old one