From 50d0f077436d78cca0b708585b461ee8548b1226 Mon Sep 17 00:00:00 2001 From: illya Date: Wed, 1 Mar 2017 13:11:22 +0200 Subject: [PATCH 01/19] Add new fields to the schema --- branding/collection/schema.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/branding/collection/schema.js b/branding/collection/schema.js index 9713bc2ec7..1b6f5c391a 100644 --- a/branding/collection/schema.js +++ b/branding/collection/schema.js @@ -42,6 +42,20 @@ Branding.schema = new SimpleSchema({ type: String, optional: true, }, + privacyPolicy: { + type: String, + optional: true, + autoform: { + rows: 5, + }, + }, + termsOfUse: { + type: String, + optional: true, + autoform: { + rows: 5, + }, + }, socialMedia: { type: [Object], optional: true, From a52c269d4c8ffaad0e56b1a21e536e529c124ca4 Mon Sep 17 00:00:00 2001 From: illya Date: Wed, 1 Mar 2017 13:11:35 +0200 Subject: [PATCH 02/19] Add new fields to the branding page --- branding/client/branding.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/branding/client/branding.html b/branding/client/branding.html index 2977435a37..8c08966523 100644 --- a/branding/client/branding.html +++ b/branding/client/branding.html @@ -25,6 +25,8 @@

{{> afQuickField name='siteSlogan' }} {{> afQuickField name='colors' }} {{> afQuickField name='siteFooter' }} + {{> afQuickField name='privacyPolicy' }} + {{> afQuickField name='termsOfUse' }} {{> afQuickField name='socialMedia' }}
-
+
+