aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/actors/account.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/actors/account.model.ts')
-rw-r--r--shared/models/actors/account.model.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/shared/models/actors/account.model.ts b/shared/models/actors/account.model.ts
index f2138077e..60f4236d5 100644
--- a/shared/models/actors/account.model.ts
+++ b/shared/models/actors/account.model.ts
@@ -4,6 +4,7 @@ import { Actor } from './actor.model'
4export interface Account extends Actor { 4export interface Account extends Actor {
5 displayName: string 5 displayName: string
6 description: string 6 description: string
7 avatars: ActorImage[]
7 8
8 updatedAt: Date | string 9 updatedAt: Date | string
9 10
@@ -16,5 +17,9 @@ export interface AccountSummary {
16 displayName: string 17 displayName: string
17 url: string 18 url: string
18 host: string 19 host: string
19 avatar?: ActorImage 20
21 avatars: ActorImage[]
22
23 // TODO: remove, deprecated in 4.2
24 avatar: ActorImage
20} 25}