From 771dba151587ca550556ba42e3b6527aa33e2504 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Fri, 6 May 2022 22:03:21 -0700 Subject: [PATCH] Remove todo Signed-off-by: Alek Ratzloff --- board/views.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/board/views.py b/board/views.py index d988c11..8e22761 100644 --- a/board/views.py +++ b/board/views.py @@ -8,11 +8,6 @@ from board.models import Post, Board __all__ = ("BoardView", "PostView") -# TODO bump order calculation. this is kind of expensive and should *really* -# only be run every few seconds rather than every post. -# This is a scale problem and not a high priority. - - def get_client_ip(request): "Get the IP address of a client-side request. Shamelessly copy/pasted from StackOverflow." x_forwarded_for = request.META.get("HTTP_X_FORWARDED_FOR")