Skip to content

Commit 908bab1

Browse files
Merge pull request #6203 from segmentio/develop
Release 24.10.2
2 parents 1ce53bc + 6a44f9e commit 908bab1

File tree

16 files changed

+694
-564
lines changed

16 files changed

+694
-564
lines changed

scripts/catalog/updateDestinations.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,11 @@ const updateDestinations = async () => {
102102
return clonedObj;
103103
};
104104

105-
// I honestly don't remember why I did this.
106-
// I think someone wanted to mention support for the Screen method to whatever destination that is
105+
// The screen method is not returned as a method from the public API, so if a destination wants to
106+
// show screen as a supported method in `destination-dossier.html` then add the destination id here
107+
const destinationsThatSupportScreen = ['63e42b47479274407b671071', '65ccc6147108efc0cf5c6fe1']
107108
destination.supportedMethods.screen = false;
108-
if (destination.id == '63e42b47479274407b671071') {
109+
if (destinationsThatSupportScreen.includes(destination.id)) {
109110
destination.supportedMethods.screen = true;
110111
}
111112

src/_data/catalog/destination_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
2-
# destination categories last updated 2024-03-05
2+
# destination categories last updated 2024-03-07
33
items:
44
- display_name: A/B Testing
55
slug: a-b-testing

0 commit comments

Comments
 (0)