Add account avatar
[oweals/peertube.git] / client / src / app / account / account-settings / account-settings.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { User } from '../../shared'
3 import { AuthService } from '../../core'
4
5 @Component({
6   selector: 'my-account-settings',
7   templateUrl: './account-settings.component.html',
8   styleUrls: [ './account-settings.component.scss' ]
9 })
10 export class AccountSettingsComponent implements OnInit {
11   user: User = null
12
13   constructor (private authService: AuthService) {}
14
15   ngOnInit () {
16     this.user = this.authService.getUser()
17   }
18
19   getAvatarPath () {
20     return this.user.getAvatarPath()
21   }
22 }