From 5c45871bdea50b67be00828bd2ce6af65c838ef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Robles?= Date: Wed, 25 Sep 2024 17:01:55 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20field=20to=20insert=20html=20?= =?UTF-8?q?after=20a=20question=20in=20the=20voting/review=20screens=20(#2?= =?UTF-8?q?11)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Parent issue: https://github.com/sequentech/meta/issues/2572 --- app/models/Models.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/Models.scala b/app/models/Models.scala index 3e0ab42..a722bb6 100644 --- a/app/models/Models.scala +++ b/app/models/Models.scala @@ -904,7 +904,8 @@ case class QuestionExtra( invalid_vote_policy: Option[String], // allowed, warn, not-allowed, warn-invalid-implicit-and-explicit review_screen__show_question_description: Option[Boolean], // default = false write_in_config: Option[WriteInConfig], - show_filter_field: Option[Boolean] // default = false + show_filter_field: Option[Boolean], // default = false + footer_html: Option[String] ) {