We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Access SINFO database:
mongo sinfo
Mark notification as unread to user:
db.notifications.update({}, {$push: {unread: "<userID>"}}, {multi: true});
Set all suggested speakers as selected
db.speakers.update( { status: "Suggestion" }, { $set: { status: "Selected" } }, { multi: true } )