Refresh community demo and docs
Deploy / deploy (push) Successful in 1m42s
CI / Rust Checks (push) Successful in 6m9s
CI / UI Checks (push) Successful in 5s
CI / Deployment Manifests (push) Successful in 2s
CI / Frontend E2E (push) Successful in 4m42s

This commit is contained in:
github-ops
2026-06-21 11:20:12 +00:00
parent cab9282c50
commit c77065756d
24 changed files with 688 additions and 807 deletions
+4 -4
View File
@@ -379,10 +379,10 @@ pub async fn apply_postgres(pool: &PgPool) -> Result<(), sqlx::Error> {
updated_at
)
select
'upstream_open_meteo_' || w.id,
'upstream_frankfurter_' || w.id,
w.id,
'Open Meteo',
'https://api.open-meteo.com',
'Frankfurter',
'https://api.frankfurter.dev',
'{}'::jsonb,
null,
now(),
@@ -392,7 +392,7 @@ pub async fn apply_postgres(pool: &PgPool) -> Result<(), sqlx::Error> {
select 1
from workspace_upstreams wu
where wu.workspace_id = w.id
and wu.name = 'Open Meteo'
and wu.name = 'Frankfurter'
)",
)
.execute(pool)