X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Factors%2Faccount.model.ts;h=5cc12c18fc789ddab91ae29e738b7d50b115de48;hb=7acee6f18aac99e359360fc4f2362d5405135a79;hp=e4dbc81e5a8d9385d3a91f4b8531ca67c24c389c;hpb=4cb6d4578893db310297d7e118ce2fb7ecb952a3;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 }