add support for generic pages

This commit is contained in:
2024-05-10 19:39:59 +02:00
parent 511715b75b
commit 8a66da7f6c
9 changed files with 305 additions and 9 deletions

View File

@@ -25,6 +25,7 @@ BASE_DIR = os.path.dirname(PROJECT_DIR)
INSTALLED_APPS = [
"home",
"generic",
"associations",
"events",
"venues",
@@ -175,6 +176,12 @@ BASE_URL = "http://example.com"
# GraphQL
GRAPHENE = {"SCHEMA": "grapple.schema.schema"}
GRAPPLE = {
"APPS": ["home", "associations", "events", "venues"],
"APPS": [
"home",
"generic",
"associations",
"events",
"venues",
],
"EXPOSE_GRAPHIQL": True,
}