Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
Renamed ReportType to TipType
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Mar 7, 2021
1 parent eaaf0e3 commit 9fc7192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vaccinate/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ class CallRequest(models.Model):
For example, if a bug in an app has us call a location repeatedly, we have the full record of why those calls were made.
"""

class ReportType(models.TextChoices):
class TipType(models.TextChoices):
EVA = "eva_report", "Eva report"
SCOOBY = "scooby_report", "Scooby report"
DATA_CORRECTIONS = "data_corrections_report", "Data corrections report"
Expand Down Expand Up @@ -483,7 +483,7 @@ class ReportType(models.TextChoices):
)

tip_type = CharTextField(
choices=ReportType.choices,
choices=TipType.choices,
blank=True,
null=True,
help_text=" the type of tip that prompted this call request, if any",
Expand Down

0 comments on commit 9fc7192

Please sign in to comment.