Skip to content

Commit 28aec34

Browse files
Merge branch 'main' into test/919-tenants-response-schema
2 parents 92d93ad + fe47d86 commit 28aec34

54 files changed

Lines changed: 6640 additions & 687 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,28 @@ CORS_ALLOWED_ORIGINS=http://localhost:5173
147147
# -----------------------------------------------------------------------------
148148
MAINTENANCE_CORS_ALLOWED_ORIGINS=
149149

150+
# -----------------------------------------------------------------------------
151+
# Subscription route CORS allowlist (issue #b035)
152+
#
153+
# Comma-separated list of origins permitted to call the /api/subscriptions
154+
# endpoints (deny by default; preflight cached for 10 minutes via
155+
# Access-Control-Max-Age).
156+
#
157+
# Set to an empty string (the default) to deny ALL cross-origin requests
158+
# to /api/subscriptions. In production you MUST set this to the origins
159+
# of the dashboards that are allowed to manage subscriptions.
160+
#
161+
# Example:
162+
# SUBSCRIPTION_CORS_ALLOWED_ORIGINS=https://app.callora.com,https://admin.callora.com
163+
#
164+
# Notes:
165+
# • Whitespace around entries is trimmed; duplicates are removed.
166+
# • Origins are matched exactly (no wildcards / no scheme-less matches).
167+
# • The middleware is mounted lazily so changing this variable requires
168+
# a process restart to take effect.
169+
# -----------------------------------------------------------------------------
170+
SUBSCRIPTION_CORS_ALLOWED_ORIGINS=
171+
150172
# -----------------------------------------------------------------------------
151173
# Soroban RPC (optional — set SOROBAN_RPC_ENABLED=true to activate)
152174
# -----------------------------------------------------------------------------

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12+
continue-on-error: true
1213

1314
strategy:
1415
matrix:

0 commit comments

Comments
 (0)