taskbar.rb 535 B

123456789101112
  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. match api_path + '/taskbar', to: 'taskbar#index', via: :get
  5. match api_path + '/taskbar/:id', to: 'taskbar#show', via: :get
  6. match api_path + '/taskbar', to: 'taskbar#create', via: :post
  7. match api_path + '/taskbar/:id', to: 'taskbar#update', via: :put
  8. match api_path + '/taskbar/:id', to: 'taskbar#destroy', via: :delete
  9. end