X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=shared%2Fmodels%2Factors%2Faccount.model.ts;h=5cc12c18fc789ddab91ae29e738b7d50b115de48;hb=60650c77c8a2a98e92d869b237ae4900f369a8fc;hp=e4dbc81e5a8d9385d3a91f4b8531ca67c24c389c;hpb=7ae71355c40e9065f83d3fc77b6750d1929ac201;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/actors/account.model.ts b/shared/models/actors/account.model.ts index e4dbc81e5..5cc12c18f 100644 --- a/shared/models/actors/account.model.ts +++ b/shared/models/actors/account.model.ts @@ -1,15 +1,5 @@ -import { Avatar } from '../avatars/avatar.model' +import { Actor } from './actor.model' -export interface Account { - id: number - uuid: string - url: string - name: string +export interface Account extends Actor { displayName: string - host: string - followingCount: number - followersCount: number - createdAt: Date - updatedAt: Date - avatar: Avatar }