diff --git a/website/common/script/content/index.js b/website/common/script/content/index.js index 861fefb08d..779b7c1700 100644 --- a/website/common/script/content/index.js +++ b/website/common/script/content/index.js @@ -17,7 +17,7 @@ import { } from './constants'; import achievements from './achievements'; - +import categoryOptions from './categoryOptions'; import eggs from './eggs'; import hatchingPotions from './hatching-potions'; import stable from './stable'; @@ -85,6 +85,8 @@ api.officialPinnedItems = officialPinnedItems; api.bundles = bundles; +api.categoryOptions = categoryOptions; + /* --------------------------------------------------------------- Unique Rewards: Potion and Armoire diff --git a/website/server/controllers/api-v3/content.js b/website/server/controllers/api-v3/content.js index ed8a79d782..b2f8b959b1 100644 --- a/website/server/controllers/api-v3/content.js +++ b/website/server/controllers/api-v3/content.js @@ -10,7 +10,7 @@ const MOBILE_FILTER = ['achievements', 'questSeriesAchievements', 'animalColorAc 'stableAchievements', 'bundles', 'loginIncentives', 'pets', 'premiumPets', 'specialPets', 'questPets', 'wackyPets', 'mounts', 'premiumMounts,specialMounts,questMounts', 'events', 'dropEggs', 'questEggs', 'dropHatchingPotions', 'premiumHatchingPotions', 'wackyHatchingPotions', 'backgroundsFlat', 'questsByLevel', 'gear.tree', 'tasksByCategory', - 'userDefaults', 'timeTravelStable', 'gearTypes', 'cardTypes']; + 'userDefaults', 'timeTravelStable', 'gearTypes', 'cardTypes', 'categoryOptions']; const ANDROID_FILTER = [...MOBILE_FILTER, 'appearances.background'].join(','); const IOS_FILTER = [...MOBILE_FILTER, 'backgrounds'].join(',');