This repository has been archived on 2024-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
enzos-events/app/Controllers/Http/HomeController.ts
Sockenklaus a52c0143df Added database, orm, auth modules
added db migrations for users and initial data
added first controllers
added auth middleware
added rest routes and controller stub
...
2023-07-03 16:24:19 +02:00

10 lines
226 B
TypeScript

import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
export default class HomeController {
public async index({ inertia }: HttpContextContract) {
return inertia.render('Home')
}
}