Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
# Conflicts:
#	core/management/commands/init.py
  • Loading branch information
JasonLovesDoggo committed Dec 2, 2023
2 parents b9955f4 + c4ffea2 commit 2513957
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ class QrCode(models.Model):
help_text="Location of the QR code. Be specific—it's internal",
)
notes = models.TextField(help_text="Internal notes", blank=True)
key = models.CharField(max_length=64, unique=True, default=generate_hint_key, help_text="Key to access the hint, used in the QR code ")
key = models.CharField(
max_length=64,
unique=True,
default=generate_hint_key,
help_text="Key to access the hint, used in the QR code ",
)
image_url = models.URLField(
help_text="A URL to an image of where the QR code is located (try imgur)",
blank=True,
Expand Down

0 comments on commit 2513957

Please sign in to comment.