Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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