Skip to content

Restrict members from Belarus and Russia #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,5 @@ npm run cov-e2e
## Verification

Refer to the verification document `Verification.md`

Commit to force redeploy
4 changes: 2 additions & 2 deletions src/dao/RegistrationDAO.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,14 +276,14 @@ left outer join (
on a.country_code=c.country_code
)
on uax.address_id=a.address_id
and c.country_name in ( "Iran", "North Korea", "Cuba", "Sudan", "Syria" )
and c.country_name in ( "Iran", "North Korea", "Cuba", "Sudan", "Syria", "Belarus", "Russia", "Russian Federation" )
) on uax.user_id = %d
left outer join (
informixoltp:coder coder join informixoltp:country country
on (
coder.comp_country_code=country.country_code OR
coder.home_country_code=country.country_code
) and country.country_name in ( "Iran", "North Korea", "Cuba", "Sudan", "Syria" )
) and country.country_name in ( "Iran", "North Korea", "Cuba", "Sudan", "Syria", "Belarus", "Russia", "Russian Federation" )
) on coder.coder_id = %d
left outer join informixoltp:coder coder2 on coder2.coder_id = %d
left join (
Expand Down