Pārlūkot izejas kodu

Merge pull request #39 from inkhey/fix/http_method_flask_add_view

Damien Accorsi 6 gadus atpakaļ
vecāks
revīzija
b9ec9ae591
Revīzijas autora e-pasts nav piesaistīts nevienam kontam
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  1. 1 0
      hapic/ext/flask/context.py

+ 1 - 0
hapic/ext/flask/context.py Parādīt failu

@@ -133,6 +133,7 @@ class FlaskContext(BaseContext):
133 133
         view_func: typing.Callable[..., typing.Any],
134 134
     ) -> None:
135 135
         self.app.add_url_rule(
136
+            methods=[http_method],
136 137
             rule=route,
137 138
             view_func=view_func,
138 139
         )