Skip to content

Commit

Permalink
fix: Attio destination access token not marked as secret (#26979)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloc authored Jan 3, 2025
1 parent 2e597bf commit bcc474f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions posthog/cdp/templates/attio/template_attio.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
type="destination",
id="template-attio",
name="Attio",
description="Update contacts in Attio",
description="Create and update contacts in Attio",
icon_url="/static/services/attio.png",
category=["Advertisement"],
hog="""
Expand Down Expand Up @@ -43,9 +43,9 @@
{
"key": "apiKey",
"type": "string",
"label": "Attio API Key",
"description": "Check out this page on how to get your API key: https://attio.com/help/reference/integrations-automations/generating-an-api-key",
"secret": False,
"label": "Access token",
"description": "Check out this page to get your API key: https://attio.com/help/reference/integrations-automations/generating-an-api-key",
"secret": True,
"required": True,
},
{
Expand Down

0 comments on commit bcc474f

Please sign in to comment.