Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienReuiller committed Dec 19, 2024
1 parent 27d5904 commit 433668b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class Migration(migrations.Migration):
),
(
"can_be_unsubscribed",
models.BooleanField(default=False, verbose_name="L'utilisateur peut s'y désincrire"),
models.BooleanField(default=False, verbose_name="L'utilisateur peut s'y désinscrire"),
),
],
),
Expand Down
2 changes: 1 addition & 1 deletion lemarche/conversations/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class EmailGroup(models.Model):
choices=user_constants.KIND_CHOICES,
default=user_constants.KIND_BUYER,
)
can_be_unsubscribed = models.BooleanField(verbose_name="L'utilisateur peut s'y désincrire", default=False)
can_be_unsubscribed = models.BooleanField(verbose_name="L'utilisateur peut s'y désinscrire", default=False)

def __str__(self):
return f"{self.display_name} ({self.relevant_user_kind if self.relevant_user_kind else 'Tous'})"
Expand Down

0 comments on commit 433668b

Please sign in to comment.