mirror of
https://github.com/lobehub/lobehub
synced 2026-04-21 17:47:27 +00:00
parent
ed42753fe5
commit
66562170ac
2 changed files with 14 additions and 3 deletions
9
.github/workflows/sync-database-schema.yml
vendored
9
.github/workflows/sync-database-schema.yml
vendored
|
|
@ -13,8 +13,13 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- name: Install dbdocs
|
||||
run: sudo npm install -g dbdocs
|
||||
- name: Install bun
|
||||
uses: oven-sh/setup-bun@v2
|
||||
with:
|
||||
bun-version: ${{ secrets.BUN_VERSION }}
|
||||
|
||||
- name: Install deps
|
||||
run: bun i
|
||||
|
||||
- name: Check dbdocs
|
||||
run: dbdocs
|
||||
|
|
|
|||
|
|
@ -56,7 +56,13 @@ export class ServerService implements ISessionService {
|
|||
};
|
||||
|
||||
updateSessionConfig: ISessionService['updateSessionConfig'] = (id, config, signal) => {
|
||||
return lambdaClient.session.updateSessionConfig.mutate({ id, value: config }, { signal });
|
||||
return lambdaClient.session.updateSessionConfig.mutate(
|
||||
{ id, value: config },
|
||||
{
|
||||
context: { showNotification: false },
|
||||
signal,
|
||||
},
|
||||
);
|
||||
};
|
||||
|
||||
updateSessionMeta: ISessionService['updateSessionMeta'] = (id, meta, signal) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue