added db migrations for users and initial data added first controllers added auth middleware added rest routes and controller stub ...
18 lines
465 B
TypeScript
18 lines
465 B
TypeScript
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
|
|
|
|
export default class UsersController {
|
|
public async index({}: HttpContextContract) {}
|
|
|
|
public async create({}: HttpContextContract) {}
|
|
|
|
public async store({}: HttpContextContract) {}
|
|
|
|
public async show({}: HttpContextContract) {}
|
|
|
|
public async edit({}: HttpContextContract) {}
|
|
|
|
public async update({}: HttpContextContract) {}
|
|
|
|
public async destroy({}: HttpContextContract) {}
|
|
}
|