Minor tweaks and get started on docs

This commit is contained in:
Mike Conrad
2025-05-22 17:03:35 -04:00
parent 47a520e945
commit 36be410d38
5 changed files with 37 additions and 5 deletions

View File

@ -9,7 +9,7 @@
import ReplaysController from '#controllers/replays_controller'
import router from '@adonisjs/core/services/router'
router.on('/').renderInertia('home')
router.get('/', [ReplaysController, 'home'])
router.get('/replays', [ReplaysController, 'index'])
router.get('/list', [ReplaysController, 'list'])
router.get('/stats', [ReplaysController, 'stats'])