add venues

This commit is contained in:
2024-05-10 18:26:07 +02:00
parent fc301a164b
commit 511715b75b
19 changed files with 697 additions and 27 deletions

View File

@@ -27,6 +27,7 @@ INSTALLED_APPS = [
"home",
"associations",
"events",
"venues",
"grapple",
"graphene_django",
"wagtail.contrib.forms",
@@ -174,6 +175,6 @@ BASE_URL = "http://example.com"
# GraphQL
GRAPHENE = {"SCHEMA": "grapple.schema.schema"}
GRAPPLE = {
"APPS": ["home", "associations", "events"],
"APPS": ["home", "associations", "events", "venues"],
"EXPOSE_GRAPHIQL": True,
}