2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2013-08-21 19:16:42 +00:00
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
api_path = Rails.configuration.api_path
|
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
match api_path + '/taskbar', to: 'taskbar#index', via: :get
|
|
|
|
match api_path + '/taskbar/:id', to: 'taskbar#show', via: :get
|
|
|
|
match api_path + '/taskbar', to: 'taskbar#create', via: :post
|
|
|
|
match api_path + '/taskbar/:id', to: 'taskbar#update', via: :put
|
2015-04-27 14:53:29 +00:00
|
|
|
match api_path + '/taskbar/:id', to: 'taskbar#destroy', via: :delete
|
2013-08-21 19:16:42 +00:00
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|