Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }