From 3d257d62c9c4e2a82452c93a6a0c1d02276db96b Mon Sep 17 00:00:00 2001 From: George Katsikas <giorgakis.katsikas@gmail.com> Date: Tue, 26 Sep 2023 14:09:45 +0200 Subject: [PATCH] add common views like empty response --- scipost_django/SciPost_v1/urls.py | 1 + scipost_django/common/urls.py | 17 +++++++++++++++++ scipost_django/common/views.py | 8 ++++++++ 3 files changed, 26 insertions(+) create mode 100644 scipost_django/common/urls.py create mode 100644 scipost_django/common/views.py diff --git a/scipost_django/SciPost_v1/urls.py b/scipost_django/SciPost_v1/urls.py index 098312d1a..4a9672067 100644 --- a/scipost_django/SciPost_v1/urls.py +++ b/scipost_django/SciPost_v1/urls.py @@ -93,6 +93,7 @@ urlpatterns = [ path("commentaries/", include("commentaries.urls", namespace="commentaries")), path("commentary/", include("commentaries.urls", namespace="_commentaries")), path("comments/", include("comments.urls", namespace="comments")), + path("common/", include("common.urls", namespace="common")), path("edadmin/", include("edadmin.urls", namespace="edadmin")), path("ethics/", include("ethics.urls", namespace="ethics")), path("forums/", include("forums.urls", namespace="forums")), diff --git a/scipost_django/common/urls.py b/scipost_django/common/urls.py new file mode 100644 index 000000000..62d8ae697 --- /dev/null +++ b/scipost_django/common/urls.py @@ -0,0 +1,17 @@ +__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)" +__license__ = "AGPL v3" + + +from django.urls import path + +from . import views + +app_name = "common" + +urlpatterns = [ + path( + "empty", + views.empty, + name="empty", + ) +] diff --git a/scipost_django/common/views.py b/scipost_django/common/views.py new file mode 100644 index 000000000..006780c0c --- /dev/null +++ b/scipost_django/common/views.py @@ -0,0 +1,8 @@ +__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)" +__license__ = "AGPL v3" + +from django.http import HttpResponse + + +def empty(request): + return HttpResponse("") -- GitLab