Skip to content

Commit

Permalink
Support query params in GSB http proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
nieznanysprawiciel committed Sep 17, 2024
1 parent 5f8be31 commit cfdc6e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/activity/src/http_proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async fn proxy_http_request(
) -> crate::Result<impl Responder> {
let path_activity_url = path.into_inner();
let activity_id = path_activity_url.activity_id;
let path = path_activity_url.url;
let path = format!("{}?{}", path_activity_url.url, request.query_string());

let result =
authorize_activity_initiator(&db, id.identity, &activity_id, Role::Requestor).await;
Expand Down

0 comments on commit cfdc6e3

Please sign in to comment.