trabajo-afectivo/config/routes/online_notification.rb

9 lines
445 B
Ruby
Raw Normal View History

2014-08-26 07:54:12 +00:00
Zammad::Application.routes.draw do
api_path = Rails.configuration.api_path
# groups
match api_path + '/online_notifications', to: 'online_notifications#index', via: :get
match api_path + '/online_notifications/:id', to: 'online_notifications#update', via: :put
match api_path + '/online_notifications/mark_all_as_read', to: 'online_notifications#mark_all_as_read', via: :post
2014-08-26 07:54:12 +00:00
end