2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2015-06-26 12:00:10 +00:00
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
|
2015-06-29 08:59:25 +00:00
|
|
|
# shorter version
|
|
|
|
match '/ical', to: 'calendar_subscriptions#all', via: :get
|
|
|
|
match '/ical/:object', to: 'calendar_subscriptions#object', via: :get
|
|
|
|
match '/ical/:object/:method', to: 'calendar_subscriptions#object', via: :get
|
|
|
|
|
|
|
|
# wording version
|
2015-06-26 12:00:10 +00:00
|
|
|
match '/calendar_subscriptions', to: 'calendar_subscriptions#all', via: :get
|
|
|
|
match '/calendar_subscriptions/:object', to: 'calendar_subscriptions#object', via: :get
|
|
|
|
match '/calendar_subscriptions/:object/:method', to: 'calendar_subscriptions#object', via: :get
|
|
|
|
end
|