We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc6c405 commit d42aa76Copy full SHA for d42aa76
compiler-rs/clients_schema_to_openapi/src/lib.rs
@@ -178,7 +178,7 @@ pub fn extensions(availabilities: &Option<Availabilities>, privileges: &Option<P
178
179
if let Some(privs) = privileges {
180
if privs.index.len()>0 {
181
- result.insert("index-privileges".to_string(),serde_json::Value::String(privs.index.join(",")));
+ result.insert("x-index-privileges".to_string(),serde_json::Value::String(privs.index.join(",")));
182
}
183
if privs.cluster.len()>0 {
184
result.insert("x-cluster-privileges".to_string(),serde_json::Value::String(privs.cluster.join(",")));
0 commit comments