aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/translations
AgeCommit message (Collapse)AuthorFilesLines
2017-12-15Use token based auth in invitation e-mails (#280)0livd2-25/+15
* Use token based auth in invitation e-mails Invitation e-mails no longer contain the clear text project password * Skip invite page after project creation - Replace ``The project identifier is demo, remember it!`` by ``Invite other people to join this project!`` (linking to the invite page) - Encourage users to share the project password via other communication means in the reminder email
2017-10-26Use token based auth to reset passwords (#269)0livd2-2/+38
Send a mail containing a password reset token link instead of sending a clear text password. Ref #232
2017-09-04Enhance the dashboard. (#262)0livd2-0/+8
* Update to a more flexible admin authentication * Admin can now access any project * Add delete and edit options in the dashboard * Add a link to the dashboard in the nav bar This is a rework of the changes proposed by @Olivd, so they can apply on top of the latest master without trouble. All credit goes to him for the code.
2017-08-21Add a statistics tab (#257)0livd2-0/+20
2017-08-20Protect admin endpoints against brute force attacks (#249)0livd2-4/+8
* Protect admin endpoints against brute force attacks Add a throttling mechanism to prevent a client brute forcing the authentication form, based on its ip address Closes #245 * Reset attempt counters if they get memory hungry
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau2-0/+527
* Use absolute imports and rename package to ihatemoney * Add a ihatemoney command * Factorize application creation logic * Refactor the tests * Update the wsgi.py module with the new create_app() function * Fix some styling thanks to Flake8. * Automate Flake8 check in the CI.