選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

notification.js 341B

1234567891011
  1. const NotificationRoute = require('../routes/notification')
  2. const { onEvent } = require('../services/notification')
  3. module.exports = {
  4. name: 'notification-plugin',
  5. version: '1.0.0',
  6. register: async (server, options) => {
  7. await server.route(NotificationRoute)
  8. server.decorate('toolkit', 'event', onEvent)
  9. }
  10. }