-
Notifications
You must be signed in to change notification settings - Fork 317
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
Fixed: Every New Broadcast should be Broadcasted to Subscribers #1128
Fixed: Every New Broadcast should be Broadcasted to Subscribers #1128
Conversation
|
||
const [err, result] = await to(Broadcast.findOneAndUpdate({ _id : req.body.id }, { $set : data })); | ||
const [err, result] = await to(Broadcast.findOneAndUpdate({ _id: req.body.id }, { $set: data })); |
Check failure
Code scanning / CodeQL
Database query built from user-controlled sources High
user-provided value
|
||
const [err, result] = await to(Broadcast.findOneAndUpdate({ _id : req.body.id }, { $set : data })); | ||
const [err, result] = await to(Broadcast.findOneAndUpdate({ _id: req.body.id }, { $set: data })); |
Check failure
Code scanning / CodeQL
Database query built from user-controlled sources High
user-provided value
from: `HITK TECH Community <${config.EMAIL_USER}>`, | ||
to: "hitktechcommunity@gmail.com", | ||
subject: `New Broadcast: ${data?.title} 😍`, | ||
html: broadcastPublishMailTemplate(data), |
Check failure
Code scanning / CodeQL
Client-side cross-site scripting High
user-provided value
Hey @Kajol-Kumari Please review it and merge it. The PR failed due to some failures but those are no affect our functionality |
@@ -703,7 +702,7 @@ a > span { | |||
} | |||
} | |||
|
|||
@media screen and (max-width: 510px) { |
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 change shouldn't have come here, make sure to pull the latest master, rest looks fine
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.
Sorry for that.
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.
Its okay, we are all learning 😊
Issue that this pull request solves
Closes: #1125
Proposed changes
As soon as a broadcast gets approved by the admins, it should broadcast it to all the email subscribers. This will help students to be updated with any new opportunities posted on the site.
Types of changes
Put an
x
in the boxes that applyScreenshots
Other information
Any other information that is important to this pull request