summaryrefslogtreecommitdiff
path: root/tests/comment_tests/custom_comments/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/comment_tests/custom_comments/views.py')
-rw-r--r--tests/comment_tests/custom_comments/views.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/comment_tests/custom_comments/views.py b/tests/comment_tests/custom_comments/views.py
new file mode 100644
index 0000000000..1c3a974367
--- /dev/null
+++ b/tests/comment_tests/custom_comments/views.py
@@ -0,0 +1,14 @@
+from django.http import HttpResponse
+
+
+def custom_submit_comment(request):
+ return HttpResponse("Hello from the custom submit comment view.")
+
+def custom_flag_comment(request, comment_id):
+ return HttpResponse("Hello from the custom flag view.")
+
+def custom_delete_comment(request, comment_id):
+ return HttpResponse("Hello from the custom delete view.")
+
+def custom_approve_comment(request, comment_id):
+ return HttpResponse("Hello from the custom approve view.")