-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User Management #40
Labels
Comments
@telion2 I used passport once and it worked out quite well. For me, it solved a lot of issues. |
sven-mayer
added a commit
that referenced
this issue
Mar 6, 2018
Closed
sven-mayer
added a commit
that referenced
this issue
Mar 19, 2018
sven-mayer
added a commit
that referenced
this issue
Mar 19, 2018
sven-mayer
added a commit
that referenced
this issue
Mar 19, 2018
sven-mayer
added a commit
that referenced
this issue
Mar 19, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
As the writing Note feature is going to be finished soon and the analysing of Texts is going well, we should implement a profile for users where they can log into.
This implies that we:
1.have a way for the user to login and register (UI)
2.store & retrieve authentification data in our DB
3.secure the password with encrypting methods.
4. generally secure the whole authenfication process
5. If all that is working, we need to lock the profile route and implement a way to delete stored documents of users who closed the website before registering.
is already availible although still quite ugly.
the DB has all the naiv columns need to store user data. Since I dont know our method of encryption yet, I dont know if there is more than that needed.
3.&4. This where I need help. I have looked around of how some people secure such data using third-party services.
http://www.passportjs.org/ using https://auth0.com/docs/getting-started/overview or another of their 300 authentification strategies.
this would be solved by passport.js because it comes with a middleware that can lock routes.
The text was updated successfully, but these errors were encountered: