diff --git a/.vscode/launch.json b/.vscode/launch.json index 548cf05872..94849ec1cd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -441,7 +441,6 @@ "CLIENT_SECRET": "${env:POD_GITHUB_CLIENT_SECRET}", "PRIVATE_KEY": "${env:POD_GITHUB_PRIVATE_KEY}", "COLLABORATOR_URL": "ws://localhost:3078", - "SYSTEM_EMAIL": "anticrm@hc.engineering", "MINIO_ENDPOINT": "localhost", "MINIO_ACCESS_KEY": "minioadmin", "MINIO_SECRET_KEY": "minioadmin", @@ -463,7 +462,6 @@ "args": ["src/index.ts"], "env": { "ACCOUNTS_URL": "http://localhost:3000", - "SYSTEM_EMAIL": "anticrm@hc.engineering", "SECRET": "secret", "DOCS_RELEASE_INTERVAL": "10000", "DOCS_IN_REVIEW_CHECK_INTERVAL": "10000", @@ -523,7 +521,6 @@ "MINIO_ACCESS_KEY": "minioadmin", "MINIO_SECRET_KEY": "minioadmin", "SERVICE_ID": "sign-service", - "SYSTEM_EMAIL": "", "ACCOUNTS_URL": "http://localhost:3000", "BRANDING_PATH": "${workspaceRoot}/services/sign/pod-sign/debug/branding.json" }, diff --git a/dev/tool/src/db.ts b/dev/tool/src/db.ts index ed4db3d78a..30ecccb7dd 100644 --- a/dev/tool/src/db.ts +++ b/dev/tool/src/db.ts @@ -81,7 +81,7 @@ async function moveWorkspace ( tables = tables.filter((t) => include.has(t)) } - await createTables(new MeasureMetricsContext('', {}), pgClient, tables) + await createTables(new MeasureMetricsContext('', {}), pgClient, '', tables) const token = generateToken(systemAccountEmail, wsId) const endpoint = await getTransactorEndpoint(token, 'external') const connection = (await connect(endpoint, wsId, undefined, { diff --git a/models/recruit/src/index.ts b/models/recruit/src/index.ts index 003de31209..0d01744fff 100644 --- a/models/recruit/src/index.ts +++ b/models/recruit/src/index.ts @@ -361,7 +361,8 @@ export function createModel (builder: Builder): void { viewOptions: { groupBy: [], orderBy: [], - other: [vacancyHideArchivedOption] + other: [vacancyHideArchivedOption], + storageKey: 'vacancyViewOptions' } }, recruit.viewlet.TableVacancy @@ -502,7 +503,8 @@ export function createModel (builder: Builder): void { viewOptions: { groupBy: [], orderBy: [], - other: [applicationDoneOption, hideApplicantsFromArchivedVacanciesOption] + other: [applicationDoneOption, hideApplicantsFromArchivedVacanciesOption], + storageKey: 'applicantViewOptions' } }, recruit.viewlet.ApplicantTable @@ -559,7 +561,8 @@ export function createModel (builder: Builder): void { action: view.function.ShowEmptyGroups, label: view.string.ShowEmptyGroups } - ] + ], + storageKey: 'applicantViewOptions' } if (colors) { model.other.push(showColorsViewOption) @@ -784,7 +787,8 @@ export function createModel (builder: Builder): void { ['modifiedOn', SortingOrder.Descending], ['createdOn', SortingOrder.Descending] ], - other: [vacancyHideArchivedOption] + other: [vacancyHideArchivedOption], + storageKey: 'vacancyViewOptions' } }, recruit.viewlet.ListVacancy diff --git a/plugins/attachment-resources/src/components/AttachmentRefInput.svelte b/plugins/attachment-resources/src/components/AttachmentRefInput.svelte index c8fb1f7923..1c8758b1ea 100644 --- a/plugins/attachment-resources/src/components/AttachmentRefInput.svelte +++ b/plugins/attachment-resources/src/components/AttachmentRefInput.svelte @@ -14,7 +14,7 @@ -->