webhooks: return response from unimplemented path

This commit is contained in:
Drew DeVault 2020-05-04 11:08:08 -04:00
parent 8da6133783
commit 546f0e47be
1 changed files with 2 additions and 1 deletions

View File

@ -189,7 +189,8 @@ def mailing_list(list_id):
db.session.commit()
return "Thanks!"
elif event == "patchset:received":
pass # TODO?
# TODO?
return "Thanks!"
else:
raise NotImplementedError()