From d586fa93df9d83b96d72166cff70086b2c18ac68 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 28 Apr 2020 11:21:37 +0200 Subject: [PATCH] Add a dummy multi choice element --- pkg/service/v0/service.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pkg/service/v0/service.go b/pkg/service/v0/service.go index 670302257..7f74a67e7 100644 --- a/pkg/service/v0/service.go +++ b/pkg/service/v0/service.go @@ -212,6 +212,29 @@ func generateSettingsBundleNotificationsRequest() settings.CreateSettingsBundleR }, }, }, + { + Key: "transport", + DisplayName: "Transport", + Value: &settings.Setting_MultiChoiceValue{ + MultiChoiceValue: &settings.MultiChoiceListSetting{ + Options: []*settings.ListOption{ + { + Option: &settings.ListOption_StringValue{ + StringValue: "email", + }, + DisplayValue: "Send via email", + }, + { + Option: &settings.ListOption_StringValue{ + StringValue: "stream", + }, + DisplayValue: "Show in stream", + Default: true, + }, + }, + }, + }, + }, }, }, }