fixed POST of /hid/reset

This commit is contained in:
Devaev Maxim 2019-12-27 04:28:15 +03:00
parent 37738e38e9
commit e03cc67195

View File

@ -49,7 +49,7 @@ class HidApi:
async def __state_handler(self, _: aiohttp.web.Request) -> aiohttp.web.Response: async def __state_handler(self, _: aiohttp.web.Request) -> aiohttp.web.Response:
return make_json_response(self.__hid.get_state()) return make_json_response(self.__hid.get_state())
@exposed_http("GET", "/hid/reset") @exposed_http("POST", "/hid/reset")
async def __reset_handler(self, _: aiohttp.web.Request) -> aiohttp.web.Response: async def __reset_handler(self, _: aiohttp.web.Request) -> aiohttp.web.Response:
await self.__hid.reset() await self.__hid.reset()
return make_json_response() return make_json_response()