rename secret to claim_token

This commit is contained in:
Richard Schreiber
2025-12-16 08:00:13 +01:00
committed by Martin Gross
parent 510fc14216
commit 5f1c5db7fe
3 changed files with 4 additions and 4 deletions

View File

@@ -72,9 +72,9 @@ class ReusableMedium(LoggedModel):
max_length=200,
verbose_name=pgettext_lazy('reusable_medium', 'Identifier'),
)
secret = models.CharField(
claim_token = models.CharField(
max_length=200,
verbose_name=pgettext_lazy('reusable_medium', 'Secret'),
verbose_name=pgettext_lazy('reusable_medium', 'Claim token'),
null=True, blank=True
)
label = models.CharField(