Chocobozzz/PeerTube

View on GitHub
client/src/app/shared/shared-moderation/account-block.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { AccountBlock as AccountBlockServer } from '@peertube/peertube-models'
import { Account } from '../shared-main/account/account.model'

export class AccountBlock implements AccountBlockServer {
  byAccount: Account
  blockedAccount: Account
  createdAt: Date | string

  constructor (block: AccountBlockServer) {
    this.byAccount = new Account(block.byAccount)
    this.blockedAccount = new Account(block.blockedAccount)
    this.createdAt = block.createdAt
  }
}