Skip to content

Commit b394f01

Browse files
committed
Code cleanup and changelog entry.
1 parent c933b29 commit b394f01

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# bedrock-kms-http ChangeLog
22

3+
## 23.2.0 - 2025-11-dd
4+
5+
### Changed
6+
- Include route for fetching all keystore configs for a given root controller.
7+
38
## 23.0.0 - 2025-10-14
49

510
### Changed

lib/BedrockKeystoreConfigStorage.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,9 @@ export class BedrockKeystoreConfigStorage extends KeystoreConfigStorage {
3535
}
3636

3737
async getAll({
38-
controller, req, query = {}, options = {},
39-
returnRecord = false
38+
controller, req, query = {}, options = {}, returnRecord = false
4039
} = {}) {
41-
const records = await keystores.find({
42-
controller, query, options
43-
});
40+
const records = await keystores.find({controller, query, options});
4441
const keystoreConfigs = records.map(r => r.config);
4542
// skip request checks if specifically requested
4643
if(req === false) {

0 commit comments

Comments
 (0)