Remove particle sign integration

master
Tanner Collin 2 years ago
parent f07781afe6
commit 859b716f2d
  1. 8
      apiserver/apiserver/api/views.py
  2. 1
      apiserver/apiserver/secrets.py.example

@ -651,14 +651,6 @@ class StatsViewSet(viewsets.ViewSet, List):
else:
cache.set('sign', sign)
if secrets.SIGN_TOKEN:
try:
post_data = dict(access_token=secrets.SIGN_TOKEN, args=sign)
r = requests.post('https://api.particle.io/v1/devices/200042000647343232363230/text/', data=post_data, timeout=5)
r.raise_for_status()
except:
raise exceptions.ValidationError(dict(sign='Something went wrong :('))
return Response(200)
except KeyError:
raise exceptions.ValidationError(dict(sign='This field is required.'))

@ -61,7 +61,6 @@ DOOR_CODE = ''
WIFI_PASS = ''
MINECRAFT = ''
MUMBLE = ''
SIGN_TOKEN = ''
# Portal Email Credentials
# For sending password resets, etc.

Loading…
Cancel
Save