2014-05-16 19:39:37 +00:00
|
|
|
class ApiLatencyTestersController < ApiController
|
|
|
|
|
|
|
|
|
|
# have to be signed in currently to see this screen
|
|
|
|
|
before_filter :api_signed_in_user
|
|
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
|
|
def match
|
|
|
|
|
# some day we can find the best latency tester to test against, now there is only one.
|
2014-05-22 16:26:56 +00:00
|
|
|
@latency_tester = LatencyTester.select_latency_tester
|
2014-05-16 19:39:37 +00:00
|
|
|
|
|
|
|
|
respond_with_model(@latency_tester)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|