Issue #SBCOSS-00: Remove fields from activityConfig.json to remove bgms hardcoding#202
Merged
pallakartheekreddy merged 1 commit intorelease-8.0.0from Sep 24, 2025
Merged
Conversation
- These fields were removed to return all the keys and values that will be read from the `search-service`
|
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR removes hardcoded field definitions from the activity configuration to enable more flexible data retrieval. Instead of restricting the service to return only specific predefined fields, it now allows all available fields to be returned dynamically.
- Removed hardcoded field restrictions from activity configuration
- Changed from specific field listing to empty array for dynamic field retrieval
- Eliminates bgms-related hardcoding for improved configurability
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
pallakartheekreddy
approved these changes
Sep 24, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




Summary
This PR removes the restriction of returning only specific fields from the service when reading activity data.
The hardcoded
bgmsfields have also been removed to make the configuration more flexible.Changes
search-serviceinstead of specific fields.bgmshardcoding fromactivityConfig.json.Description by Korbit AI
What change is being made?
Remove the hardcoded field definitions from activityConfig.json by setting "fields" to an empty array for the activities configuration.
Why are these changes being made?
To stop hardcoding fields (bgms related) and allow dynamic/default field handling as part of Issue SBCOSS-00.