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 }