Skip to content

Instantly share code, notes, and snippets.

@onedebos
Created March 9, 2021 09:46
Show Gist options
  • Save onedebos/569ea7bdb4adc79302fe22877e6b1a26 to your computer and use it in GitHub Desktop.
Save onedebos/569ea7bdb4adc79302fe22877e6b1a26 to your computer and use it in GitHub Desktop.
import pusher from './index'
export default function handler({ req, res }) {
// trigger a new post event via pusher
pusher.trigger("presence-channel", "location-update", {
username: req.body.userName,
location: req.body.location,
});
res.json({ status: 200 });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment