feat(feedback): rename community → feedback (module + routes + domain)

Modul, Routen und Public-Domain heißen jetzt einheitlich "feedback":

- App-Registry: id 'community' → 'feedback', name 'Community' → 'Feedback',
  Icon Megaphone → HeartHalf (passt zum bereits-globalen heart-half-Icon
  am Module-Header und im PillNav-Usermenü)
- Modul-Config: communityModuleConfig → feedbackModuleConfig
- Routen-Refs: alle href/goto-Aufrufe in Modul-Views, MyWishesView,
  Onboarding-Wish, Profile-MyWishes auf /feedback umgestellt
- /feedback/+layout: Brand "Mana Community" → "Mana Feedback", Megaphone
  → HeartHalf, "In Mana öffnen"-CTA zeigt jetzt auf /?app=feedback
- Public-Mirror Domain: community.mana.how → feedback.mana.how
  (cloudflared-config.yml + docker-compose.macmini.yml CORS_ORIGINS +
  PUBLIC_MANA_ANALYTICS_URL_CLIENT). DNS muss separat angelegt werden.
- Settings-Section: Hilfe-Text nennt jetzt feedback.mana.how

Internal: community_show_real_name + community_karma DB-Spalten bleiben
(Migration nicht im Scope dieses Renames). Settings-Search-Index-Kategorie
'community' bleibt ebenfalls — sie spiegelt das DB-Schema, nicht den
User-Begriff.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-28 16:18:45 +02:00
parent 698e09b88c
commit 112e2cc1b4
20 changed files with 51 additions and 51 deletions

View file

@ -2,10 +2,10 @@
Public-Community-Feedback-Hub. Backend für `@mana/feedback`. Hostet
sowohl die auth-required Submission/React/Admin-Surface als auch die
anonymous Public-Mirror-Endpoints für `community.mana.how` und
`mana.how/community`.
anonymous Public-Mirror-Endpoints für `feedback.mana.how` und
`mana.how/feedback`.
## Port: 3064 (prod port via cloudflared tunnel: `community.mana.how`)
## Port: 3064 (prod port via cloudflared tunnel: `feedback.mana.how`)
## API Endpoints
@ -65,7 +65,7 @@ MANA_CREDITS_URL=http://mana-credits:3002 # internal grant calls (prod port; dev
MANA_SERVICE_KEY=... # X-Service-Key for /internal/credits/grant
FEEDBACK_PSEUDONYM_SECRET=... # SHA256(userId+secret) → display_hash
FEEDBACK_FOUNDER_USER_IDS=…,… # Comma-separated; bypass +5/+500 grants
CORS_ORIGINS=https://mana.how,https://community.mana.how
CORS_ORIGINS=https://mana.how,https://feedback.mana.how
```
## Tests