소스 검색

Use http_method params instead of hard-coded value for add_view

Guénaël Muller 6 년 전
부모
커밋
cbf738d6dc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hapic/ext/pyramid/context.py

+ 1 - 1
hapic/ext/pyramid/context.py 파일 보기

@@ -158,7 +158,7 @@ class PyramidContext(BaseContext):
158 158
         self.configurator.add_route(
159 159
             name=route,
160 160
             path=route,
161
-            request_method='GET'
161
+            request_method=http_method
162 162
         )
163 163
 
164 164
         self.configurator.add_view(