on_OPTIONS isn't neccessary

This commit is contained in:
David Baker 2016-07-12 14:13:14 +01:00
parent 75fa7f6b3c
commit aaa9d9f0e1
2 changed files with 1 additions and 10 deletions

View file

@ -72,9 +72,6 @@ class RegisterRequestTokenRestServlet(RestServlet):
ret = yield self.identity_handler.requestEmailToken(**body)
defer.returnValue((200, ret))
def on_OPTIONS(self, _):
return 200, {}
class RegisterRestServlet(RestServlet):
PATTERNS = client_v2_patterns("/register$")