scorelab / OpenMF

An Open Source Mobile Forensics Investigation Tool for Android Platform
Apache License 2.0
150 stars 97 forks source link

Implemented confirm account via email feature #141

Open amlannandy opened 3 years ago

amlannandy commented 3 years ago

Description

PR consists of the following changes -

  1. Whenever a new user is created, a confirmation email is sent to verify that account. Only after email confirmation, that account can use the routes protected by '@login_required'.
  2. Modified the user model class to have an 'is_verified' property that is false by default.
  3. Modified the '@login_required' decorator to also block requests by user with 'is_verified' = false.
  4. Confirmation of the email sets 'is_verified' = true.

Fixes #140

Type of change

How Has This Been Tested?

Create a new user. Log in and try accessing protected routes. Then confirm the account and try again.

Test Configuration:

screen-capture (1)

Checklist: