From a394fe84420d9b2ef40c7c942337aab5c2b176c7 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Wed, 27 Aug 2014 10:35:48 +0200 Subject: [PATCH] Changin comments order in API --- taiga/projects/history/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/projects/history/services.py b/taiga/projects/history/services.py index b2a18555..45d8f20f 100644 --- a/taiga/projects/history/services.py +++ b/taiga/projects/history/services.py @@ -300,7 +300,7 @@ def get_history_queryset_by_model_instance(obj:object, types=(HistoryType.change history_entry_model = get_model("history", "HistoryEntry") qs = history_entry_model.objects.filter(key=key, type__in=types) - return qs.order_by("-created_at") + return qs.order_by("created_at") # Freeze implementatitions