forked from Kamva-Academy/Kamva-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: change 'change' to 'reset' for resetting password
- Loading branch information
1 parent
7c67fc6
commit 6802ae1
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
apps/accounts/migrations/0046_alter_verificationcode_verification_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.1.3 on 2025-01-13 16:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('accounts', '0045_alter_purchase_discount_code_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='verificationcode', | ||
name='verification_type', | ||
field=models.CharField(choices=[('create-user-account', 'Createuseraccount'), ('reset-user-password', 'Resetuserpassword'), ('change-user-phone-number', 'Changeuserphonenumber')], max_length=30, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters