game-data/src/routes/index.rb
Gregory Ballantine 516f125ea7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fixed a lot of linter warnings
2023-12-11 13:08:46 -05:00

18 lines
332 B
Ruby

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