Skip to content

Commit

Permalink
Revert "[OTE-419] Add GB_GEO to compliance reasons (backport #1697) (#…
Browse files Browse the repository at this point in the history
…1717)"

This reverts commit f542b8b.
  • Loading branch information
dydxwill authored Jun 28, 2024
1 parent 82c6315 commit 8546212
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 24 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export enum ComplianceReason {
MANUAL = 'MANUAL',
US_GEO = 'US_GEO',
CA_GEO = 'CA_GEO',
GB_GEO = 'GB_GEO',
SANCTIONED_GEO = 'SANCTIONED_GEO',
COMPLIANCE_PROVIDER = 'COMPLIANCE_PROVIDER',
}
Expand Down
1 change: 0 additions & 1 deletion indexer/services/comlink/public/api-documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3397,7 +3397,6 @@ This operation does not require authentication
|*anonymous*|MANUAL|
|*anonymous*|US_GEO|
|*anonymous*|CA_GEO|
|*anonymous*|GB_GEO|
|*anonymous*|SANCTIONED_GEO|
|*anonymous*|COMPLIANCE_PROVIDER|

Expand Down
1 change: 0 additions & 1 deletion indexer/services/comlink/public/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,6 @@
"MANUAL",
"US_GEO",
"CA_GEO",
"GB_GEO",
"SANCTIONED_GEO",
"COMPLIANCE_PROVIDER"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ export function getGeoComplianceReason(
return ComplianceReason.US_GEO;
} else if (country === 'CA') {
return ComplianceReason.CA_GEO;
} else if (country === 'GB') {
return ComplianceReason.GB_GEO;
} else {
return ComplianceReason.SANCTIONED_GEO;
}
Expand Down

0 comments on commit 8546212

Please sign in to comment.