2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2016-04-18 00:02:31 +00:00
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
api_path = Rails.configuration.api_path
|
|
|
|
|
|
|
|
match api_path + '/http_logs', to: 'http_logs#index', via: :get
|
2021-05-12 11:37:44 +00:00
|
|
|
match api_path + '/http_logs/:facility', to: 'http_logs#index', via: :get, constraints: { facility: %r{.*} }
|
2016-04-18 00:02:31 +00:00
|
|
|
match api_path + '/http_logs', to: 'http_logs#create', via: :post
|
|
|
|
|
|
|
|
end
|