Sha256: aa459fc0c4b42d47af682d151cd9ad3247f8d077c66eda69b02c6066d6477c08
Contents?: true
Size: 442 Bytes
Versions: 15
Compression:
Stored size: 442 Bytes
Contents
module Inferno module Web module Controllers module TestRuns module Results class Index < Controller include Import[test_runs_repo: 'inferno.repositories.test_runs'] def handle(req, res) results = test_runs_repo.results_for_test_run(req.params[:test_run_id]) res.body = serialize(results) end end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems