Skip to content

Commit

Permalink
Merge pull request #7443 from ScopeLift/update-brightid-urls
Browse files Browse the repository at this point in the history
Use SSL URLS for BrightID Integration
  • Loading branch information
octavioamu authored Sep 16, 2020
2 parents 783fa1e + dae471e commit eaec14c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/dashboard/brightid_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def get_brightid_status(brightid_uuid):
brightIDUrl = 'http://node.brightid.org/brightid/v4/verifications/Gitcoin/' + str(brightid_uuid)
brightIDUrl = 'https://app.brightid.org/node/v5/verifications/Gitcoin/' + str(brightid_uuid)

try:
response = requests.get(brightIDUrl)
Expand Down Expand Up @@ -38,7 +38,7 @@ def get_brightid_status(brightid_uuid):
return 'unknown'

def assign_brightid_sponsorship(brightid_uuid):
brightIDv5OpUrl = 'http://node.brightid.org/brightid/v5/operations'
brightIDv5OpUrl = 'https://app.brightid.org/brightid/v5/operations'

op = {
'name': 'Sponsor',
Expand Down

0 comments on commit eaec14c

Please sign in to comment.