fix
Build Project / build (push) Successful in 31s

This commit is contained in:
Kevin
2026-06-28 11:37:12 +02:00
parent b217b33c2d
commit 9cb4909481
12 changed files with 89 additions and 89 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import { BaseModel } from '@adonisjs/lucid/orm'
import type User from '#models/user'
export default class UserTransformer {
static exclude = ['password']
transform(user: BaseModel) {
static transform(user: typeof User.prototype) {
return {
id: user.id,
name: user.name,