trabajo-afectivo/config/routes/test.rb

12 lines
389 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
if !Rails.env.production?
Zammad::Application.routes.draw do
get '/tests_:name', to: 'tests#show'
2012-11-23 08:36: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
end
end