Skip to content

Commit f5cd47d

Browse files
Merge branch 'develop' into DOC-808
2 parents 78cb57e + 2653835 commit f5cd47d

File tree

75 files changed

+5709
-1915
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+5709
-1915
lines changed

CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ CODEOWNERS @segmentio/segment-doc-team
4141

4242

4343
# Engage
44-
/src/engage/ @pwseg @rchinn-segment
44+
/src/engage/ @pwseg
4545

4646
# Unify
47-
/src/unify @rchinn-segment
47+
/src/unify @pwseg
4848

4949
# Protocols owners
5050
/src/protocols @forstisabella

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-02-27
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)