From 320f979a99617a178bb6ff032fe45b40b667a0fe Mon Sep 17 00:00:00 2001 From: brookesargent Date: Wed, 20 Nov 2024 09:58:59 -0500 Subject: [PATCH] template struct tag from plural to singular --- internal/models/recipients.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/models/recipients.go b/internal/models/recipients.go index 36d2515f..bef68596 100644 --- a/internal/models/recipients.go +++ b/internal/models/recipients.go @@ -10,7 +10,7 @@ type WebhookRecipientModel struct { Name types.String `tfsdk:"name"` Secret types.String `tfsdk:"secret"` URL types.String `tfsdk:"url"` - Templates types.Set `tfsdk:"templates"` // WebhookTemplateModel + Templates types.Set `tfsdk:"template"` // WebhookTemplateModel } type WebhookTemplateModel struct {