(frontend) declare full and short name in APIUser type

API now serialize these two data. Save them when requestion /me.
This commit is contained in:
lebaudantoine
2024-11-15 23:30:41 +01:00
committed by aleb_the_flash
parent dcba3330f7
commit fba9910705

View File

@@ -1,4 +1,6 @@
export type ApiUser = {
id: string
email: string
full_name: string
last_name: string
}