tests_controller.rb 356 B

12345678910111213141516171819
  1. # Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
  2. class TestsController < ApplicationController
  3. # GET /test
  4. def index
  5. respond_to do |format|
  6. format.html # index.html.erb
  7. end
  8. end
  9. # GET /test/wait
  10. def wait
  11. sleep params[:sec].to_i
  12. result = { :success => true }
  13. render :json => result
  14. end
  15. end