2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2014-08-27 13:06:09 +00:00
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
api_path = Rails.configuration.api_path
|
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
match api_path + '/recent_view', to: 'recent_view#index', via: :get
|
|
|
|
match api_path + '/recent_view', to: 'recent_view#create', via: :post
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|