trabajo-afectivo/config/routes/test.rb
2022-01-01 14:38:12 +01:00

11 lines
389 B
Ruby

# 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'
match '/tests/wait/:sec', to: 'tests#wait', via: :get
match '/tests/raised_exception', to: 'tests#error_raised_exception', via: :get
end
end