From 14a61d5fe45150d0edf24502273f5875360cb15a Mon Sep 17 00:00:00 2001 From: wvffle Date: Sat, 30 Jul 2022 18:22:45 +0000 Subject: [PATCH] Migrate settings --- front/src/components/auth/Settings.vue | 572 ++++++++++++------------- front/src/types.ts | 6 + 2 files changed, 283 insertions(+), 295 deletions(-) diff --git a/front/src/components/auth/Settings.vue b/front/src/components/auth/Settings.vue index d45dc8d47..6840a1512 100644 --- a/front/src/components/auth/Settings.vue +++ b/front/src/components/auth/Settings.vue @@ -1,3 +1,270 @@ + + - - diff --git a/front/src/types.ts b/front/src/types.ts index 330f4343e..a42e01804 100644 --- a/front/src/types.ts +++ b/front/src/types.ts @@ -332,6 +332,9 @@ export interface Actor { export interface User { id: string avatar?: Cover + email: string + // TODO (wvffle): Is it really a string? Or maybe it's { text: string, content_type: string } + summary: string username: string full_username: string instance_support_message_display_date: string @@ -484,4 +487,7 @@ export interface Application { name: string redirect_uris: string scopes: string + + // This is actually a date string + created: string }