From 873b3b6c1d806f95f5b1343642657ccd0925bc5e Mon Sep 17 00:00:00 2001 From: Jenni Laakso Date: Thu, 4 Jun 2026 13:57:27 +0300 Subject: [PATCH 1/2] Add support for reveal-listing-protected-files --- src/sharetribe/tempelhof/spec.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sharetribe/tempelhof/spec.cljs b/src/sharetribe/tempelhof/spec.cljs index 20d0712..243ae1e 100644 --- a/src/sharetribe/tempelhof/spec.cljs +++ b/src/sharetribe/tempelhof/spec.cljs @@ -130,6 +130,7 @@ :action/publish-reviews :action/reveal-customer-protected-data :action/reveal-provider-protected-data + :action/reveal-listing-protected-files :action/stripe-create-charge :action/stripe-create-charge-pi :action/stripe-create-payment-intent From d5f4cfe0f3ccc7cb90232a9ff1139e40ea904e40 Mon Sep 17 00:00:00 2001 From: Jenni Laakso Date: Mon, 15 Jun 2026 10:23:31 +0300 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1018ca6..2ba77cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] - xxxx-xx-xx +### Added + +- Add support for `:action/reveal-listing-protected-files` action. [#120](https://github.com/sharetribe/flex-cli/pull/120) + ### Fixed - Exit gracefully using by setting `process.exitCode` instead of calling `process.exit()`. [Calling `process.exit(...)` will force the process to exit as quickly as possible even if there are still asynchronous operations pending that have not yet completed fully, including I/O operations to process.stdout and process.stderr.](https://nodejs.org/api/process.html#processexitcode) This may result in an error when e.g. piping the output to `jq`.[#119](https://github.com/sharetribe/flex-cli/pull/119)