Skip to content

Commit

Permalink
Use SSL urls for brightid integration
Browse files Browse the repository at this point in the history
  • Loading branch information
apbendi committed Sep 16, 2020
1 parent 5aee33f commit dae471e
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 dae471e

Please sign in to comment.