From e83a95367cc02feb31194c9d3fe69a20bbafda8a Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Wed, 3 Mar 2021 08:47:58 +0200 Subject: [PATCH] Add commented out fix --- project1/README.md | 3 +-- project1/project1/views.py | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project1/README.md b/project1/README.md index c45bb51..43e2bc4 100644 --- a/project1/README.md +++ b/project1/README.md @@ -2,8 +2,7 @@ This project is course project (Project 1) for the online course https://cybersecuritybase.mooc.fi/. -The project *SHOULD NOT* be used for anything else than for the project course as it is insecure and -against all best security practices. +The project *SHOULD NOT* be used for anything else than for the project course as it is insecure and against all best security practices. ## Getting started diff --git a/project1/project1/views.py b/project1/project1/views.py index 081c11d..d020efd 100644 --- a/project1/project1/views.py +++ b/project1/project1/views.py @@ -23,6 +23,7 @@ def all_products(request): products = Product.objects.all() return render(request, "index.html", {"products": products}) +#@login_required(login_url='/login') def filtered_products(request): filter = request.GET.get('filter', '') products = Product.objects.raw("SELECT * FROM project1_Product where name like '%" + filter + "%'")