Revert "Move GraphQL to separata app"

This reverts commit 6ac4209492.
This commit is contained in:
2023-11-29 21:18:02 +01:00
parent d921c2d8a6
commit d1c3ac6079
9 changed files with 7 additions and 26 deletions

View File

@ -33,7 +33,6 @@ ALLOWED_HOSTS = ["*"]
INSTALLED_APPS = [
"games.apps.GamesConfig",
"api.apps.ApiConfig",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
@ -42,7 +41,7 @@ INSTALLED_APPS = [
"graphene_django",
]
GRAPHENE = {"SCHEMA": "api.schema.schema"}
GRAPHENE = {"SCHEMA": "games.schema.schema"}
if DEBUG:
INSTALLED_APPS.append("django_extensions")