# frozen_string_literal: true # / (top-level) routes class GameData < Sinatra::Base get '/' do tests = Test.reverse(:updated_at).limit(10).all() erb :'index/index', locals: { title: 'Dashboard', tests: tests } end end