We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc8d7c2 commit 63b5d5aCopy full SHA for 63b5d5a
poem-openapi-derive/src/webhook.rs
@@ -234,6 +234,7 @@ fn generate_operation(
234
required: <#arg_ty as #crate_name::ApiExtractor>::PARAM_IS_REQUIRED,
235
deprecated: #deprecated,
236
explode: #explode,
237
+ style: ::std::option::Option::None
238
};
239
params.push(meta_param);
240
}
poem-openapi/tests/webhook.rs
@@ -126,6 +126,7 @@ async fn parameters() {
126
required: true,
127
deprecated: false,
128
explode: true,
129
+ style: None,
130
},
131
MetaOperationParam {
132
name: "b".to_string(),
@@ -135,6 +136,7 @@ async fn parameters() {
135
136
137
138
139
140
141
]
142
);
0 commit comments