From 1c8b9ffbd9bd6bb4a16d769404da7a5453383e56 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 21 Aug 2026 21:30:50 +0000 Subject: [PATCH] fix(brand): .se -> .app i brand.config + dokumentera MAIL_FROM (noreply@cibello.app) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - brand.config.json: apiDomain/adminDomain/supportEmail cibello.se -> cibello.app. - supportEmail var inte kosmetisk: skickas som kontaktadress i OpenFoodFacts-anropen och läses av appen (mobile/shared-types); .se-adressen fanns inte. - .env.example: dokumenterat rekommenderat MAIL_FROM=Cibello . - Genomsökt hela repo:t: inga funktionella .se kvar (endast ofarlig notis i docs/INFRA-PLAN.md). - Config-only: ingen logik rörd; brand.config.json validerad som giltig JSON. Co-Authored-By: Claude --- .env.example | 2 ++ brand.config.json | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 5901fa5..efb5d81 100644 --- a/.env.example +++ b/.env.example @@ -77,4 +77,6 @@ SMTP_PORT=587 SMTP_SECURE=false SMTP_USER= SMTP_PASS= +# Avsändaradress för systemmejl (verifiering, kvitton m.m.). Rekommenderat: +# MAIL_FROM=Cibello MAIL_FROM= diff --git a/brand.config.json b/brand.config.json index 963e05d..2c22a8a 100644 --- a/brand.config.json +++ b/brand.config.json @@ -5,7 +5,7 @@ "urlScheme": "cibello", "iosBundleId": "com.cibello.app", "androidPackage": "com.cibello.app", - "apiDomain": "api.cibello.se", - "adminDomain": "admin.cibello.se", - "supportEmail": "support@cibello.se" + "apiDomain": "api.cibello.app", + "adminDomain": "admin.cibello.app", + "supportEmail": "support@cibello.app" }