Skip to content

Commit 7ada00d

Browse files
committed
Merge branch 'main' of github.com:devforth/adminforth into next
AdminForth/1703/make-s3-adapter-support-url-pa AdminForth/1703/make-s3-adapter-support-url-pa
2 parents cd1e824 + dbc5d62 commit 7ada00d

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

adminforth/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class AdminForth implements IAdminForth {
503503
504504
╚════════════════════════════════════════════════════════════════════════════
505505
`);
506-
}
506+
}
507507
}
508508

509509
async discoverDatabases() {

adminforth/pnpm-workspace.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ minimumReleaseAgeExclude:
1515
- '@adminforth/connector-postgres@1.0.1'
1616
- '@adminforth/connector-sqlite@1.0.1'
1717
- adminforth@3.0.2
18+
19+
minimumReleaseAge: 0

adminforth/types/adapters/KeyValueAdapter.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
export interface KeyValueAdapter {
77

88
get(key: string): Promise<string | null>;
9+
10+
listByPrefix(prefix: string, limit: number): Promise<Record<string, string>>;
911

1012
set(key: string, value: string, expiresInSeconds?: number): Promise<void>;
1113

0 commit comments

Comments
 (0)