app/controllers/javascript_controller.rb in test_server-0.0.11 vs app/controllers/javascript_controller.rb in test_server-0.1.0
- old
+ new
@@ -1,29 +1,34 @@
# encoding: utf-8
module TestServer
module App
class JavascriptController < ApplicationController
+ use Rack::Cors do
+ allow do
+ origins '*'
+ resource '*', :headers => :any, :methods => [:get, :post]
+ end
+ end
before do
param :no_cache, Boolean, default: false
param :must_revalidate, Boolean, default: false
param :max_age, Integer
param :base64, Boolean, default: false
configure_caching(params)
end
- get '/xhr/string' do
+
+ get '/xhr/url/?' do
param :count, Integer, default: 10
param :timeout, Integer, default: 10
param :url, String
+ param :repeat, Boolean, default: false
@count = params[:count]
@url = params[:url]
@timeout = params[:timeout]
-
- #@data = encode do
- # generate_string(params[:count])
- #end
+ @repeat = params[:repeat]
haml :'xhr/show', layout: :application
end
end
end