b68/packages/wh/modules/gh.js

8 lines
205 B
JavaScript

const octokit = require('../helper/github')
module.exports = async (req, res) => {
const notif =
await octokit.rest.activity.listNotificationsForAuthenticatedUser()
res.send(notif.data)
}