From 69b04a894dafee780f1d413407ea8e98062005e0 Mon Sep 17 00:00:00 2001 From: Frederick Holland Date: Fri, 17 Oct 2025 22:02:17 +1100 Subject: [PATCH] Added order to article section --- models/article.go | 1 + 1 file changed, 1 insertion(+) diff --git a/models/article.go b/models/article.go index 86f98da..a877760 100644 --- a/models/article.go +++ b/models/article.go @@ -10,6 +10,7 @@ type Article struct { } type ArticleSection struct { + Order int `json:"order"` Type string `json:"type"` Content string `json:"content"` }