Skip to content

Commit

Permalink
Get users should stop returning internal attributes if requested (#2158)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnematzadeh authored Nov 8, 2024
1 parent 37f76c4 commit c524f73
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/lib/user/user.get.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ async function get(options) {
if (userPlain.picture && userPlain.picture.toString) {
userPlain.picture = userPlain.picture.toString('utf8');
}
delete userPlain.password;
delete userPlain.telegram_user_id;
return userPlain;
});

Expand Down
16 changes: 16 additions & 0 deletions server/test/security/user.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const { expect } = require('chai');
const { authenticatedRequest } = require('../controllers/request.test');

describe('/api/v1/user/', () => {
it('should return all users without password', async () => {
await authenticatedRequest
.get('/api/v1/user?fields=password')
.expect('Content-Type', /json/)
.expect(200)
.then((res) => {
res.body.forEach((user) => {
expect(user).to.not.have.property('password');
});
});
});
});

0 comments on commit c524f73

Please sign in to comment.