Compare commits
3 commits
0b1a548ee4
...
a6fa7ebb3a
Author | SHA1 | Date | |
---|---|---|---|
a6fa7ebb3a | |||
d0bd6c1231 | |||
960e64963f |
5 changed files with 1626 additions and 530 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lemoncurry",
|
||||
"version": "1.12.0",
|
||||
"version": "1.12.1",
|
||||
"repository": "https://git.00dani.me/00dani/lemoncurry",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
|
|
2115
poetry.lock
generated
2115
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "lemoncurry"
|
||||
version = "1.12.0"
|
||||
version = "1.12.1"
|
||||
description = "Indieweb-compatible personal website"
|
||||
authors = ["Danielle McLean <dani@00dani.me>"]
|
||||
license = "MIT"
|
||||
|
@ -48,6 +48,7 @@ pyyaml = "*"
|
|||
qrcode = "*"
|
||||
ronkyuu = "*"
|
||||
xrd = "*"
|
||||
greenlet = "^2.0.2"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
mypy = "*"
|
||||
|
|
32
users/migrations/0019_auto_20230810_1927.py
Normal file
32
users/migrations/0019_auto_20230810_1927.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Generated by Django 3.2.20 on 2023-08-10 09:27
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("users", "0018_auto_20230810_1754"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="user",
|
||||
name="nostr_key",
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
help_text="A Nostr public key in 32-byte hex format (64 characters)",
|
||||
max_length=64,
|
||||
null=True,
|
||||
unique=True,
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="user",
|
||||
name="nostr_relays",
|
||||
field=models.JSONField(
|
||||
blank=True,
|
||||
default=list,
|
||||
help_text="An array of Nostr relay URLs that this public key posts to",
|
||||
),
|
||||
),
|
||||
]
|
|
@ -82,11 +82,11 @@ class User(ModelMeta, AbstractUser):
|
|||
)
|
||||
|
||||
nostr_key = models.CharField(
|
||||
max_length=32,
|
||||
max_length=64,
|
||||
unique=True,
|
||||
blank=True,
|
||||
null=True,
|
||||
help_text="A Nostr public key in 32-byte hex format",
|
||||
help_text="A Nostr public key in 32-byte hex format (64 characters)",
|
||||
)
|
||||
nostr_relays = models.JSONField(
|
||||
default=list,
|
||||
|
|
Loading…
Reference in a new issue