akveo / ngx-admin

Customizable admin dashboard template based on Angular 10+
https://akveo.github.io/ngx-admin/
MIT License
25.21k stars 7.95k forks source link

Customize passwords processing before sending request #1572

Open diyfr opened 6 years ago

diyfr commented 6 years ago

Feature request : Customize passwords processing before sending request

I'm submitting a ...

Issue description

Current behavior:
The password is visible in the calls

Expected behavior:
Add an method (config params ?) for customize password before send request (Hash, Salt etc....)

Steps to reproduce:
It is not advisable to transit and store the password in clear. See console network logs

nnixaa commented 6 years ago

Hi @diyfr, thanks for your suggestion. Though I'm not completely sure this makes much sense, as

In any case, if you need to add an additional layer of processing you can use Angular HTTP Interceptors to be able to adjust requests before sending.

diyfr commented 6 years ago

This also allows to comply with the RGPD, and not store in the clear server side passwords :)