feat: add CNY (Chinese Yuan) to supported currencies (#42)

This commit is contained in:
Ulas
2026-04-13 09:22:42 +02:00
parent d68226d11e
commit 01d1f583b8
3 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ const router = express.Router();
const VALID_MEAL_TYPES = ['breakfast', 'lunch', 'dinner', 'snack'];
const DEFAULT_MEAL_TYPES = VALID_MEAL_TYPES.join(',');
const VALID_CURRENCIES = ['EUR', 'USD', 'GBP', 'SEK', 'NOK', 'DKK', 'CHF', 'PLN', 'CZK', 'HUF', 'JPY', 'AUD', 'CAD'];
const VALID_CURRENCIES = ['EUR', 'USD', 'GBP', 'SEK', 'NOK', 'DKK', 'CHF', 'CNY', 'PLN', 'CZK', 'HUF', 'JPY', 'AUD', 'CAD'];
const DEFAULT_CURRENCY = 'EUR';
// --------------------------------------------------------