online_notification.rb 760 B

12345678910111213
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. Zammad::Application.routes.draw do
  3. api_path = Rails.configuration.api_path
  4. # groups
  5. match api_path + '/online_notifications', to: 'online_notifications#index', via: :get
  6. match api_path + '/online_notifications/:id', to: 'online_notifications#show', via: :get
  7. match api_path + '/online_notifications/:id', to: 'online_notifications#update', via: :put
  8. match api_path + '/online_notifications/:id', to: 'online_notifications#destroy', via: :delete
  9. match api_path + '/online_notifications/mark_all_as_read', to: 'online_notifications#mark_all_as_read', via: :post
  10. end