Files
game-data/src/routes/index.rb
T
gballan aec77628f7
ci/woodpecker/push/woodpecker Pipeline failed
Small updates
2025-07-23 23:25:00 -04:00

16 lines
250 B
Ruby

# 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