class Inferno::Web::Controllers::TestSessions::Show

Public Instance Methods

call(params) click to toggle source
# File lib/inferno/apps/web/controllers/test_sessions/show.rb, line 6
def call(params)
  test_session = repo.find(params[:id])
  halt 404 if test_session.nil?

  self.body = serialize(test_session)
end