fix export to tarball

This commit is contained in:
Ruben Fiszel
2022-08-19 00:55:38 +02:00
parent 1f40c39fdb
commit 9f02ca8dec
+1 -1
View File
@@ -640,7 +640,7 @@ async fn tarball_workspace(
{
let variables = sqlx::query_as::<_, ListableVariable>(
"SELECT * FROM variable WHERE workspace_id = $1 AND is_secret = false",
"SELECT *, false as is_expired FROM variable WHERE workspace_id = $1 AND is_secret = false",
)
.bind(&w_id)
.fetch_all(&db)