Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 58166b7

Browse files
github-actions[bot]gtema
authored andcommitted
chore: Fix passkey resource api version
1 parent eda92a6 commit 58166b7

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

openstack_sdk/src/api/identity/v4/user/passkey/register_finish.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,11 @@ impl RestEndpoint for Request<'_> {
238238
fn request_headers(&self) -> Option<&HeaderMap> {
239239
self._headers.as_ref()
240240
}
241+
242+
/// Returns required API version
243+
fn api_version(&self) -> Option<ApiVersion> {
244+
Some(ApiVersion::new(4, 0))
245+
}
241246
}
242247

243248
#[cfg(test)]

openstack_sdk/src/api/identity/v4/user/passkey/register_start.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ impl RestEndpoint for Request<'_> {
124124
fn request_headers(&self) -> Option<&HeaderMap> {
125125
self._headers.as_ref()
126126
}
127+
128+
/// Returns required API version
129+
fn api_version(&self) -> Option<ApiVersion> {
130+
Some(ApiVersion::new(4, 0))
131+
}
127132
}
128133

129134
#[cfg(test)]

0 commit comments

Comments
 (0)