-
Notifications
You must be signed in to change notification settings - Fork 126
Add comment actions: edit, delete, react #9372
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
Conversation
…jd/comments-e2e-scaffolding # Conflicts: # packages/common/src/services/remote-config/feature-flags.ts # packages/discovery-provider/src/tasks/entity_manager/entity_manager.py # packages/libs/src/sdk/api/generated/default/.openapi-generator/FILES # packages/libs/src/sdk/api/generated/default/models/index.ts
|
|
| GitGuardian id | GitGuardian status | Secret | Commit | Filename | |
|---|---|---|---|---|---|
| 2416685 | Triggered | Generic High Entropy Secret | f9f503a | packages/libs/src/sdk/config/staging.ts | View secret |
| 7150224 | Triggered | Generic High Entropy Secret | f9f503a | packages/libs/src/sdk/scripts/generateServicesConfig.ts | View secret |
| 7150224 | Triggered | Generic High Entropy Secret | f9f503a | packages/libs/src/sdk/config/staging.ts | View secret |
| 10622416 | Triggered | Generic High Entropy Secret | f9f503a | packages/libs/src/sdk/scripts/generateServicesConfig.ts | View secret |
| 10622416 | Triggered | Generic High Entropy Secret | f9f503a | packages/libs/src/sdk/config/staging.ts | View secret |
| 11648676 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/discovery-one.env | View secret |
| 11648676 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/discovery-one.docker.env | View secret |
| 11648676 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/discovery-one.env | View secret |
| 11648676 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/discovery-one.docker.env | View secret |
| 11648676 | Triggered | Generic High Entropy Secret | 32419d7 | core/infra/dev_config/discovery-one.docker.env | View secret |
| 11648678 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/content-three.env | View secret |
| 11648678 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/content-three.docker.env | View secret |
| 11648678 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/content-three.env | View secret |
| 11648678 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/content-three.docker.env | View secret |
| 11648678 | Triggered | Generic High Entropy Secret | 32419d7 | core/infra/dev_config/content-three.docker.env | View secret |
| 11648679 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/content-two.env | View secret |
| 11648679 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/content-two.docker.env | View secret |
| 11648679 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/content-two.env | View secret |
| 11648679 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/content-two.docker.env | View secret |
| 11648679 | Triggered | Generic High Entropy Secret | 32419d7 | core/infra/dev_config/content-two.docker.env | View secret |
| 11648680 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/content-one.docker.env | View secret |
| 11648680 | Triggered | Generic High Entropy Secret | 12bdddd | core/infra/dev_config/content-one.env | View secret |
| 11648680 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/content-one.docker.env | View secret |
| 11648680 | Triggered | Generic High Entropy Secret | bdb7e40 | core/infra/dev_config/content-one.env | View secret |
| 11648680 | Triggered | Generic High Entropy Secret | 32419d7 | core/infra/dev_config/content-one.docker.env | View secret |
🛠 Guidelines to remediate hardcoded secrets
- Understand the implications of revoking this secret by investigating where it is used in your code.
- Replace and store your secrets safely. Learn here the best practices.
- Revoke and rotate these secrets.
- If possible, rewrite git history. Rewriting git history is not a trivial act. You might completely break other contributing developers' workflow and you risk accidentally deleting legitimate data.
To avoid such incidents in the future consider
- following these best practices for managing and storing secrets including API keys and other credentials
- install secret detection on pre-commit to catch secret before it leaves your machine and ease remediation.
🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.
|
Preview this change https://demo.audius.co/is-comment-actions |
| TIP = 'Tip', | ||
| COMMENT = 'Comment' | ||
| COMMENT = 'Comment', | ||
| REACTION = 'Reaction' |
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.
Do you think it makes sense to prefix COMMENT_REACTION instead? Since reactions in this context are just for comments
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.
this isn't actually used, ill remove
| for _, dashboard_wallet_json in dashboard_wallets | ||
| } | ||
|
|
||
| logger.info(f"asdf entities_to_fetch {entities_to_fetch}") |
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.
are these asdf logs meant to stay or just temporary
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.
this is my trademark
| async editComment(metadata: CommentMetadata) { | ||
| const { userId, entityId } = metadata | ||
| const response = await this.entityManager.manageEntity({ | ||
| userId, | ||
| entityType: EntityType.COMMENT, | ||
| entityId, | ||
| action: Action.UPDATE, | ||
| metadata: JSON.stringify({ | ||
| cid: '', | ||
| data: snakecaseKeys(metadata) | ||
| }), | ||
| auth: this.auth | ||
| }) | ||
| return response | ||
| } |
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.
man I love how simple these methods are in the SDK
DejayJD
left a comment
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.
LGTM - minus the debug logs that I assume need to be deleted
|
Preview this change https://demo.audius.co/is-comment-actions |
[7121301] Set is_custom_musical_key (#9418) Sebastian Klingler [ee99fd4] add is_custom_musical_key (#9416) Michelle Brier [f30a637] [PAY-3332] Remixers users endpoint (#9401) Reed [f2eabb1] [QA-1491] Fix balance polling bug (#9402) Raymond Jacobson [c5e7348] Fix lint (#9412) Raymond Jacobson [5598656] [QA-1356] Improve notification UI (#9390) Raymond Jacobson [dcb74eb] Fix useClickOutside (#9409) Andrew Mendelsohn [975b630] Add better error messages for Claimable Tokens Program (#9369) Marcus Pasell [17904fb] [PAY-3335] Add priority fees to SDK Solana usages (#9399) Marcus Pasell [c34cd83] Record Track Downloads via Entity Manager (#9103) Marcus Pasell [e59dfc8] [QA-1357] Remove excessive polling and amplitude events in unlock (#9391) Raymond Jacobson [26b2fc9] [QA-1496] fix unsafe read of audio analysis field (#9406) Randy Schott [abc1b37] [C-4934] Search bar fixes (#9403) Sebastian Klingler [d525a1b] [C-4930, C-4931] Add IconText, ArtistPick, and Identifier components to harmony and harmony native (#9400) Kyle Shanks [53bf3e2] [PAY-3321][PAY-3333] Add network cut feature flag and update staking bridge and payment router addresses (#9393) Saliou Diallo [4d0fbc2] [PAY-3294] Hide save/repost for locked albums on mobile (#9333) Reed [7e3a75c] [C-4936] FilterButton fixes (#9397) Sebastian Klingler [517251d] [PAY-3286] Upload/edit confirmation drawer & modal rework (#9326) Raymond Jacobson [dce9903] [C-4920] Only show bpm decimals if necessary (#9398) Sebastian Klingler [d6dbab0] [C-4937] Adding some pagination buttons (#9394) JD Francis [f183f7e] [PAY-3336] fix isPlaying logic for details screens (#9395) Randy Schott [5ed523f] Add comment actions: edit, delete, react (#9372) Isaac Solo [88e24b5] [C 4922] Update mobile filter button (#9385) Dylan Jeffers [901d811] [C-4923] Persist verified filter & general cleanup (#9384) Sebastian Klingler [bab49d6] Add Pin icon and Timestamp component to harmony and harmony-native (#9383) Kyle Shanks [53a1a32] [QA-1485] Redir to signup/in on direct /feed link (#9373) Raymond Jacobson [c618eb9] Improve useClickOutside (#9377) Sebastian Klingler [a97deb8] [PAY-2267] Update stage payment router and program addresses (#9387) Raymond Jacobson [def034f] [QA-1446] Fix popup alignment (#9389) Raymond Jacobson [c86bc70] Add priority fees to purchases (#9392) Marcus Pasell [66f1a0e] [PAY-3314] Track select dropdown for purchase/remix targeting (#9386) Andrew Mendelsohn [5fe7681] Comments Read/Create E2E - Changes to DB/Discovery/SDK/Desktop UI (#9319) JD Francis [1ccfcd4] [PAY-3331] Purchase/sale endpoint filtering by content id (#9376) Reed [fc59a10] [PAY-3330] Fix spacing on RepostsFavoritesStats (#9375) Raymond Jacobson [7712005] Fix short trending bug (#9378) Raymond Jacobson [196fdba] [QA-1114] Include menu items even if buttons are present (#9381) Raymond Jacobson [8e6b1e8] [QA-1486] Fix sign up select artists screen (#9371) Sebastian Klingler [34d4417] [PAY-3313] Targeted DMs CTA and modal (#9364) Andrew Mendelsohn [3a19003] [C-4921] Fix search v2 navigating back from profile (#9370) Sebastian Klingler [d266394] [C-4918] Improve harmony web FilterButton (#9366) Dylan Jeffers [4ef81a7] Bump mobile versions to 110 (#9367) Dylan Jeffers
Description
Add comment reactions table and add edit, delete, react actions.
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide repro instructions & any configuration.
Tested e2e locally.