Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions nexus/src/authn/external/cookies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use anyhow::Context;
use async_trait::async_trait;
use cookie::{Cookie, CookieJar, ParseError};
use dropshot::{
ApiEndpointBodyContentType, Extractor, ExtractorMetadata, HttpError,
RequestContext, ServerContext,
ApiEndpointBodyContentType, ExtensionMode, Extractor, ExtractorMetadata,
HttpError, RequestContext, ServerContext,
};
use std::sync::Arc;

Expand Down Expand Up @@ -48,7 +48,10 @@ impl Extractor for Cookies {
fn metadata(
_body_content_type: ApiEndpointBodyContentType,
) -> ExtractorMetadata {
ExtractorMetadata { paginated: false, parameters: vec![] }
ExtractorMetadata {
extension_mode: ExtensionMode::None,
parameters: vec![],
}
}
}

Expand Down