2015-09-09 06:52:05 +00:00
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
api_path = Rails.configuration.api_path
|
|
|
|
|
|
|
|
# calendars
|
2018-05-11 08:09:24 +00:00
|
|
|
match api_path + '/calendars_init', to: 'calendars#init', via: :get
|
2015-09-09 06:52:05 +00:00
|
|
|
match api_path + '/calendars', to: 'calendars#index', via: :get
|
|
|
|
match api_path + '/calendars/:id', to: 'calendars#show', via: :get
|
|
|
|
match api_path + '/calendars', to: 'calendars#create', via: :post
|
|
|
|
match api_path + '/calendars/:id', to: 'calendars#update', via: :put
|
|
|
|
match api_path + '/calendars/:id', to: 'calendars#destroy', via: :delete
|
|
|
|
|
|
|
|
end
|