diff options
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/api/asana.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pysite/views/api/asana.py b/pysite/views/api/asana.py index 11f38ea7..4424367b 100644 --- a/pysite/views/api/asana.py +++ b/pysite/views/api/asana.py @@ -23,12 +23,6 @@ class IndexView(APIView): def post(self, asana_key): if asana_key != ASANA_KEY: - self.send_webhook( - title="Asana", - description=f"Key verification failed\nExpected: `{ASANA_KEY}`\nGot: `{asana_key}`", - color=COLOUR_RED - ) - return self.error(ErrorCodes.unauthorized) if "X-Hook-Secret" in request.headers: # Confirm to Asana that we would like to make this hook |