mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
12 lines
247 B
Ruby
12 lines
247 B
Ruby
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class TestsController < ApplicationController
|
|
|
|
# GET /test/wait
|
|
def wait
|
|
sleep params[:sec].to_i
|
|
result = { success: true }
|
|
render json: result
|
|
end
|
|
|
|
end
|