generated from RealDevSquad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 279
Fix group member count #2524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Kavyashri217
wants to merge
17
commits into
RealDevSquad:develop
from
Kavyashri217:kavyashri/fix-group-member-count
Closed
Fix group member count #2524
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
4c81b38
Initialize branch
Kavyashri217 730d955
Fix the memberCount error by making changes discordactions.js file
Kavyashri217 36bfdcd
Use Map for liveRoleIdToCountMap to avoid object injection warning
Kavyashri217 d8a01e3
Merge branch 'RealDevSquad:develop' into kavyashri/fix-group-member-c…
Kavyashri217 c049c33
Change a comment, remove commented original code
Kavyashri217 17185a2
Add /* istanbul ignore next */ above the function enrichGroupDataWith…
Kavyashri217 8d6a58b
Guard DISCORD_BASE_URL to avoid invalid URL in tests
Kavyashri217 1d38a1c
Fix group member count using live Discord roles
Kavyashri217 30f7254
Make enrichGroupDataWithMembershipInfo use the stubbed function
Kavyashri217 a87ac33
Stub global fetch to avoid discord base url dependency
Kavyashri217 4282ffa
Commit changes
Kavyashri217 ceb35a6
Make changes as per developer review 1
Kavyashri217 a49c0aa
Change as per the PR review 1
Kavyashri217 8156560
Upgrade CodeQL GitHub Action to v3
Kavyashri217 ea1da1a
Resolved the comments
Kavyashri217 bee6f8b
Undo changes made in codeql.yml
Kavyashri217 2e55732
Delete .github/workflows/codeql.yml
Kavyashri217 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the use of adding fetchStub here is unclear, test changes in this file don't seem to be using it, can you point me where is it being used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fetch stub isn’t used directly in this test. The request hits /discord-actions/groups, which internally calls getDiscordMembers().
The stub ensures that call doesn’t make a real Discord API request and keeps the integration test deterministic.