Skip to content

Commit

Permalink
Merge branch 'develop' into staging
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
  • Loading branch information
haiodo committed Jan 18, 2025
2 parents 895ed20 + 67ca63d commit 134d889
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion pods/front/src/__start.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright © 2023 Hardcore Engineering Inc.
// Copyright © 2023, 2025 Hardcore Engineering Inc.
//

import { Analytics } from '@hcengineering/analytics'
Expand Down Expand Up @@ -44,6 +44,7 @@ startFront(metricsContext, {
DESKTOP_UPDATES_URL: process.env.DESKTOP_UPDATES_URL,
DESKTOP_UPDATES_CHANNEL: process.env.DESKTOP_UPDATES_CHANNEL,
ANALYTICS_COLLECTOR_URL: process.env.ANALYTICS_COLLECTOR_URL,
LINK_PREVIEW_URL: process.env.LINK_PREVIEW_URL,
AI_URL: process.env.AI_URL,
TELEGRAM_BOT_URL: process.env.TELEGRAM_BOT_URL,
STATS_URL: process.env.STATS_API ?? process.env.STATS_URL,
Expand Down
4 changes: 3 additions & 1 deletion server/front/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 Hardcore Engineering Inc.
// Copyright © 2021, 2025 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
Expand Down Expand Up @@ -258,6 +258,7 @@ export function start (
brandingUrl?: string
previewConfig: string
uploadConfig: string
linkPreviewUrl?: string
pushPublicKey?: string
disableSignUp?: string
},
Expand Down Expand Up @@ -307,6 +308,7 @@ export function start (
GMAIL_URL: config.gmailUrl,
CALENDAR_URL: config.calendarUrl,
COLLABORATOR: config.collaborator,
LINK_PREVIEW_URL: config.linkPreviewUrl,
COLLABORATOR_URL: config.collaboratorUrl,
BRANDING_URL: config.brandingUrl,
PREVIEW_CONFIG: config.previewConfig,
Expand Down
7 changes: 5 additions & 2 deletions server/front/src/starter.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021, 2024 Hardcore Engineering Inc.
// Copyright © 2021-2025 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
Expand Down Expand Up @@ -109,6 +109,8 @@ export function startFront (ctx: MeasureContext, extraConfig?: Record<string, st

const brandingUrl = process.env.BRANDING_URL

const linkPreviewUrl = process.env.LINK_PREVIEW_URL

setMetadata(serverToken.metadata.Secret, serverSecret)

const disableSignUp = process.env.DISABLE_SIGNUP
Expand All @@ -130,7 +132,8 @@ export function startFront (ctx: MeasureContext, extraConfig?: Record<string, st
previewConfig,
uploadConfig,
pushPublicKey,
disableSignUp
disableSignUp,
linkPreviewUrl
}
console.log('Starting Front service with', config)
const shutdown = start(ctx, config, SERVER_PORT, extraConfig)
Expand Down
3 changes: 2 additions & 1 deletion server/postgres/src/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,8 @@ abstract class PostgresAdapterBase implements DbAdapter {
switch (type) {
case 'common':
if (Array.isArray(val) && val.includes(null)) {
res.push(`(${tkey} = ANY(${vars.addArray(val, inferType(val))})) OR ${tkey} IS NULL`)
const vv = vars.addArray(val, inferType(val))
res.push(`(${tkey} = ANY(${vv}) OR ${tkey} IS NULL)`)
} else {
if (val.length > 0) {
res.push(`${tkey} = ANY(${vars.addArray(val, inferType(val))})`)
Expand Down

0 comments on commit 134d889

Please sign in to comment.