Compare commits
No commits in common. "731f177d189b8fa6288092cace575c41cc95c656" and "1490a95735a105155700ab727b9c06161856c0e3" have entirely different histories.
731f177d18
...
1490a95735
5 changed files with 1049 additions and 1043 deletions
|
@ -3,7 +3,7 @@
|
|||
<article class="h-entry media">
|
||||
{{i}}<aside class="info">
|
||||
{{i}}<a class="p-author h-card" href="{{ entry.author.url }}">
|
||||
{{i}}{% if entry.author.avatar %}<img class="u-photo img-fluid" src="{{ entry.author.avatar.url }}" alt="{{ entry.author.name }}" />{% endif %}
|
||||
{{i}}<img class="u-photo img-fluid" src="{{ entry.author.avatar.url }}" alt="{{ entry.author.name }}" />
|
||||
{{i}}<span class="p-name sr-only">{{ entry.author.name }}</span>
|
||||
{{i}}</a>
|
||||
{{i}}<a class="u-uid u-url" href="{{ entry.url }}">
|
||||
|
|
|
@ -154,6 +154,7 @@ CACHES = {
|
|||
"LOCATION": "redis://127.0.0.1:6380/0",
|
||||
"KEY_PREFIX": "lemoncurry",
|
||||
"OPTIONS": {
|
||||
"PARSER_CLASS": "redis.connection.HiredisParser",
|
||||
"SERIALIZER": "lemoncurry.msgpack.MSGPackModernSerializer",
|
||||
},
|
||||
"VERSION": 2,
|
||||
|
|
2083
poetry.lock
generated
2083
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -48,7 +48,7 @@ pyyaml = "*"
|
|||
qrcode = "*"
|
||||
ronkyuu = "*"
|
||||
xrd = "*"
|
||||
greenlet = "*"
|
||||
greenlet = "^2.0.2"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
mypy = "*"
|
||||
|
|
|
@ -128,7 +128,7 @@ class User(ModelMeta, AbstractUser):
|
|||
|
||||
@property
|
||||
def avatar_url(self):
|
||||
return self.avatar.url if self.avatar else None
|
||||
return self.avatar.url
|
||||
|
||||
@cached_property
|
||||
def facebook_id(self):
|
||||
|
@ -154,7 +154,7 @@ class User(ModelMeta, AbstractUser):
|
|||
"url": self.full_url,
|
||||
"name": self.name,
|
||||
"email": self.email,
|
||||
"image": urljoin(base, self.avatar.url) if self.avatar else None,
|
||||
"image": urljoin(base, self.avatar.url),
|
||||
"givenName": self.first_name,
|
||||
"familyName": self.last_name,
|
||||
"sameAs": [profile.url for profile in self.profiles.all()],
|
||||
|
|
Loading…
Reference in a new issue