aboutsummaryrefslogtreecommitdiff
path: root/src/controller/payments.rs
diff options
context:
space:
mode:
authorJoris2023-08-12 20:05:09 +0200
committerJoris2023-08-12 20:05:09 +0200
commit8c689db1c8fa06ddb9119e626e7b1149f3493905 (patch)
treecb4029776162387a03a7a131ceee3628ed1ba4ef /src/controller/payments.rs
parent459016e70dd4933a8082d27748097de81a3e53ff (diff)
downloadbudget-8c689db1c8fa06ddb9119e626e7b1149f3493905.tar.gz
budget-8c689db1c8fa06ddb9119e626e7b1149f3493905.tar.bz2
budget-8c689db1c8fa06ddb9119e626e7b1149f3493905.zip
Sign cookie with secret key
Diffstat (limited to 'src/controller/payments.rs')
-rw-r--r--src/controller/payments.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/controller/payments.rs b/src/controller/payments.rs
index 42d3e3c..2663fa7 100644
--- a/src/controller/payments.rs
+++ b/src/controller/payments.rs
@@ -232,10 +232,9 @@ pub async fn search_category(
) -> Response<Body> {
match db::payments::search_category(&wallet.pool, query.payment_name).await
{
- Some(category_id) => utils::with_header(
+ Some(category_id) => utils::with_headers(
Response::new(format!("{}", category_id).into()),
- CONTENT_TYPE,
- "application/json",
+ vec![(CONTENT_TYPE, "application/json")],
),
None => utils::not_found(),
}