trabajo-afectivo/config/routes/test.rb

12 lines
388 B
Ruby
Raw Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://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