Skip to content

Commit

Permalink
feat: add GetResponse and elopage as processors
Browse files Browse the repository at this point in the history
  • Loading branch information
codeflorist committed Sep 22, 2023
1 parent 0a4f701 commit 38bc48d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
7 changes: 7 additions & 0 deletions composables/useDataProcessingPresets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,13 @@ export const useDataProcessingPresets = () => {
dataCategories: ['personal'],
purposes: ['newsletter'],
},
{
processor: defaultProcessors.find((processor) => processor.id === 'getresponse_pl'),
required: false,
service: 'Email Marketing',
dataCategories: ['personal'],
purposes: ['newsletter'],
},
]
const payment: DataProcessing[] = []
const advertising: DataProcessing[] = []
Expand Down
18 changes: 18 additions & 0 deletions composables/useDefaultProcessors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,24 @@ export const useDefaultProcessors = (): Processor[] => {
dpf_url:
'https://www.dataprivacyframework.gov/s/participant-search/participant-detail?id=a2zt00000008V77AAE&status=Active',
},
{
id: 'getresponse_pl',
name: 'GetResponse S.A.',
street: 'Grunwaldzka 413',
zip: '80-309',
city: 'Gdansk',
country: 'PL',
privacy_policy_url: 'https://www.getresponse.com/legal/privacy',
},
{
id: 'elopage_de',
name: 'elopage GmbH',
street: 'Potsdamer Straße 125',
zip: '10783',
city: 'Berlin',
country: 'DE',
privacy_policy_url: 'https://elopage.com/privacy',
},
]
return processors.sort((a: Processor, b: Processor) => a.name.localeCompare(b.name))
}

0 comments on commit 38bc48d

Please sign in to comment.