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
|
|
|
|
2021-10-14 14:35:12 +00:00
|
|
|
if !Rails.env.production?
|
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
get '/tests_:name', to: 'tests#show'
|
2012-11-23 08:36:12 +00:00
|
|
|
|
2021-10-14 14:35:12 +00:00
|
|
|
match '/tests/wait/:sec', to: 'tests#wait', via: :get
|
|
|
|
match '/tests/raised_exception', to: 'tests#error_raised_exception', via: :get
|
2012-11-23 08:36:12 +00:00
|
|
|
|
2021-10-14 14:35:12 +00:00
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|