Skip to content

Commit

Permalink
Fix the mixup of DPA_TYPE_MODEL_SURF and DPA_TYPE_IN_SURF_AGREEMENT
Browse files Browse the repository at this point in the history
  • Loading branch information
quartje committed Oct 10, 2023
1 parent 356bdd0 commit 060da13
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class DpaType

private static array $allowedDpaTypes = [
'privacy.form.dpaType.choice.dpa-not-applicable' => self::DPA_TYPE_NOT_APPLICABLE,
'privacy.form.dpaType.choice.through-surf' => self::DPA_TYPE_MODEL_SURF,
'privacy.form.dpaType.choice.in-surf-agreement' => self::DPA_TYPE_IN_SURF_AGREEMENT,
'privacy.form.dpaType.choice.through-surf' => self::DPA_TYPE_IN_SURF_AGREEMENT,
'privacy.form.dpaType.choice.in-surf-agreement' => self::DPA_TYPE_MODEL_SURF,
'privacy.form.dpaType.choice.dpa-supplied-by-service' => self::DPA_TYPE_SUPPLIED_BY_SERVICE,
'privacy.form.dpaType.choice.other' => self::DPA_TYPE_OTHER
];
Expand Down

0 comments on commit 060da13

Please sign in to comment.