Skip to content

Commit

Permalink
add opencollective as FIRST_PARTY_HOSTS (#11050)
Browse files Browse the repository at this point in the history
  • Loading branch information
znarf authored Feb 21, 2025
1 parent 803acb7 commit 8feefa4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lib/preview-features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,15 @@ export type PreviewFeature = {
};

const PLATFORM_ACCOUNTS = ['ofico', 'ofitech'];
const FIRST_PARTY_HOSTS = ['opensource', 'europe', 'oce-foundation-usd', 'oce-foundation-eur', 'raft', 'metagov'];
const FIRST_PARTY_HOSTS = [
'opencollective',
'opensource',
'europe',
'oce-foundation-usd',
'oce-foundation-eur',
'raft',
'metagov',
];

/**
* List of current preview features.
Expand Down Expand Up @@ -129,7 +137,7 @@ export const previewFeatures: PreviewFeature[] = [
title: 'Bank Account synchronization',
description: 'Connect your bank account to import transactions',
publicBeta: false,
closedBetaAccessFor: [...PLATFORM_ACCOUNTS, ...FIRST_PARTY_HOSTS, 'opencollective'],
closedBetaAccessFor: [...PLATFORM_ACCOUNTS, ...FIRST_PARTY_HOSTS],
dependsOn: PREVIEW_FEATURE_KEYS.TRANSACTIONS_IMPORTS,
},
];

0 comments on commit 8feefa4

Please sign in to comment.