This repository was archived by the owner on Feb 15, 2026. It is now read-only.
feat: Add optional message on declining media request#3714
Open
KyleKincer wants to merge 2 commits intosct:developfrom
Open
feat: Add optional message on declining media request#3714KyleKincer wants to merge 2 commits intosct:developfrom
KyleKincer wants to merge 2 commits intosct:developfrom
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
b78e3ef to
201b822
Compare
1 task
Richardvaio
reviewed
Mar 30, 2025
Richardvaio
left a comment
There was a problem hiding this comment.
please let me know if ive give enough information. im new to this
There was a problem hiding this comment.
ALTER TABLE media_requests - these need the "s" removed = ALTER TABLE media_request
|
|
||
| const [isRetrying, setRetrying] = useState(false); | ||
|
|
||
| const declineRequest = async (declineMessage: string) => { |
There was a problem hiding this comment.
Replacing a few parts to include Declined Reason before the decline message in the list.
-
Replace this
{requestData.status === MediaRequestStatus.DECLINED && requestData.adminMessage && (
{intl.formatMessage(messages.declinedreason)}
{requestData.adminMessage.replace(/^"|"$/g, '')}
)} -
Add this
const messages = defineMessages({
declinedreason: 'Declined Reason', -
and add into i18n\local
"components.RequestList.RequestItem.declinedreason": "Declined Reason",
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
This change adds a modal to allow an admin user to add an optional message to the user when declining a media request. This message is included in any notification to the user of their declined request. The decline text is also visible on the request itself.
Screenshot (if UI-related)
To-Dos
Issues Fixed or Closed