Add creator to scene profile header
This commit is contained in:
parent
0cdfd089f5
commit
41a18bf32f
4 changed files with 39 additions and 20 deletions
|
@ -27,6 +27,7 @@ export class ProfileViewModel {
|
|||
did: string = ''
|
||||
handle: string = ''
|
||||
actorType = ACTOR_TYPE_USER
|
||||
creator: string = ''
|
||||
displayName?: string
|
||||
description?: string
|
||||
followersCount: number = 0
|
||||
|
@ -145,6 +146,7 @@ export class ProfileViewModel {
|
|||
this.did = res.data.did
|
||||
this.handle = res.data.handle
|
||||
this.actorType = res.data.actorType
|
||||
this.creator = res.data.creator
|
||||
this.displayName = res.data.displayName
|
||||
this.description = res.data.description
|
||||
this.followersCount = res.data.followersCount
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue