diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-25 10:21:38 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-25 13:50:48 +0200 |
commit | 6b738c7a31591a83fdcd9c78b6b1f98e543c378b (patch) | |
tree | db771d0e99e9ff27570885fe2a6f58a7c1948fbc /client/src/app/+account | |
parent | 48dce1c90dff4e90a4bcffefaecf157336cf904b (diff) | |
download | PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.tar.gz PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.tar.zst PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.zip |
Video channel API routes refractor
Diffstat (limited to 'client/src/app/+account')
-rw-r--r-- | client/src/app/+account/account-about/account-about.component.ts | 2 | ||||
-rw-r--r-- | client/src/app/+account/account.component.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+account/account-about/account-about.component.ts b/client/src/app/+account/account-about/account-about.component.ts index 0772b844e..8746875cb 100644 --- a/client/src/app/+account/account-about/account-about.component.ts +++ b/client/src/app/+account/account-about/account-about.component.ts | |||
@@ -18,7 +18,7 @@ import { AccountService } from '@app/shared/account/account.service' | |||
18 | styleUrls: [ './account-about.component.scss' ] | 18 | styleUrls: [ './account-about.component.scss' ] |
19 | }) | 19 | }) |
20 | export class AccountAboutComponent implements OnInit { | 20 | export class AccountAboutComponent implements OnInit { |
21 | private account: Account | 21 | account: Account |
22 | 22 | ||
23 | constructor ( | 23 | constructor ( |
24 | protected route: ActivatedRoute, | 24 | protected route: ActivatedRoute, |
diff --git a/client/src/app/+account/account.component.ts b/client/src/app/+account/account.component.ts index 1c3e528a7..ae5354ed9 100644 --- a/client/src/app/+account/account.component.ts +++ b/client/src/app/+account/account.component.ts | |||
@@ -9,7 +9,7 @@ import { Account } from '@app/shared/account/account.model' | |||
9 | styleUrls: [ './account.component.scss' ] | 9 | styleUrls: [ './account.component.scss' ] |
10 | }) | 10 | }) |
11 | export class AccountComponent implements OnInit { | 11 | export class AccountComponent implements OnInit { |
12 | private account: Account | 12 | account: Account |
13 | 13 | ||
14 | constructor ( | 14 | constructor ( |
15 | private route: ActivatedRoute, | 15 | private route: ActivatedRoute, |