Skip to content
Snippets Groups Projects
Verified Commit 514879c0 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Reformat

parent 5b3c5b36
No related branches found
No related tags found
2 merge requests!1123Resolve "Finalise Vuetify app as SPA",!1066Translations update from Weblate
from django.utils import timezone
from typing import Union
from django.utils import timezone
import graphene
from graphene_django import DjangoObjectType
from graphene_django.forms.mutation import DjangoModelFormMutation
......@@ -27,7 +28,6 @@ class PersonType(DjangoObjectType):
class Meta:
model = Person
full_name = graphene.String()
unread_notifications_count = graphene.Int()
photo = graphene.Field(FieldFileType)
......
......@@ -423,4 +423,8 @@ for app_config in apps.app_configs.values():
# Ignore exception as app just has no URLs
pass # noqa
urlpatterns.append(re_path(r'^(?P<url>.*)$', TemplateView.as_view(template_name="core/vue_index.html"), name="vue_app"))
urlpatterns.append(
re_path(
r"^(?P<url>.*)$", TemplateView.as_view(template_name="core/vue_index.html"), name="vue_app"
)
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment