Skip to content

Commit

Permalink
fix: allow auth model password field to be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Oct 20, 2022
1 parent 7c0354b commit 75d9605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adonis-typings/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ declare module '@ioc:Adonis/Addons/Auth' {
) => Promise<InstanceType<T>>
} & {
new (): LucidRow & {
password?: string
password?: string | null
rememberMeToken?: string | null
}
}
Expand Down

0 comments on commit 75d9605

Please sign in to comment.