From c7851e53312f83e1bc8be9da4ee1a7c71d61fda2 Mon Sep 17 00:00:00 2001 From: Bucky Schwarz Date: Thu, 24 Sep 2020 12:32:32 -0700 Subject: [PATCH] feat: turn on community templates --- flags.yml | 4 ++-- kit/feature/list.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flags.yml b/flags.yml index f14edbdaddd..bc0e95db126 100644 --- a/flags.yml +++ b/flags.yml @@ -31,9 +31,9 @@ - name: Community Templates description: Replace current template uploading functionality with community driven templates key: communityTemplates - default: false + default: true expose: true - contact: Bucky, Johnny Steenbergen (Berg) + contact: Bucky lifetime: permanent - name: Frontend Example diff --git a/kit/feature/list.go b/kit/feature/list.go index d381bd57759..b03fb6f649b 100644 --- a/kit/feature/list.go +++ b/kit/feature/list.go @@ -33,8 +33,8 @@ func BackendExample() BoolFlag { var communityTemplates = MakeBoolFlag( "Community Templates", "communityTemplates", - "Bucky, Johnny Steenbergen (Berg)", - false, + "Bucky", + true, Permanent, true, )