diff options
author | Chocobozzz <me@florianbigard.com> | 2022-01-18 11:25:52 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-01-18 11:25:52 +0100 |
commit | c1f7a737cfe174ff1648f269a62540826d0e8089 (patch) | |
tree | 5a066b12ee24608b25640e74085e575fd0486de4 /client/src/app/+my-library | |
parent | 7177b46ca1b35aa9d7ed39a06c1dcf41a4fc6180 (diff) | |
download | PeerTube-c1f7a737cfe174ff1648f269a62540826d0e8089.tar.gz PeerTube-c1f7a737cfe174ff1648f269a62540826d0e8089.tar.zst PeerTube-c1f7a737cfe174ff1648f269a62540826d0e8089.zip |
Reduce history method names
Diffstat (limited to 'client/src/app/+my-library')
-rw-r--r-- | client/src/app/+my-library/my-history/my-history.component.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+my-library/my-history/my-history.component.ts b/client/src/app/+my-library/my-history/my-history.component.ts index 34efe5558..daabca178 100644 --- a/client/src/app/+my-library/my-history/my-history.component.ts +++ b/client/src/app/+my-library/my-history/my-history.component.ts | |||
@@ -95,7 +95,7 @@ export class MyHistoryComponent implements OnInit, DisableForReuseHook { | |||
95 | getVideosObservable (page: number) { | 95 | getVideosObservable (page: number) { |
96 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) | 96 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) |
97 | 97 | ||
98 | return this.userHistoryService.getUserVideosHistory(newPagination, this.search) | 98 | return this.userHistoryService.list(newPagination, this.search) |
99 | .pipe( | 99 | .pipe( |
100 | tap(res => this.pagination.totalItems = res.total) | 100 | tap(res => this.pagination.totalItems = res.total) |
101 | ) | 101 | ) |
@@ -124,7 +124,7 @@ export class MyHistoryComponent implements OnInit, DisableForReuseHook { | |||
124 | } | 124 | } |
125 | 125 | ||
126 | deleteHistoryElement (video: Video) { | 126 | deleteHistoryElement (video: Video) { |
127 | this.userHistoryService.deleteUserVideoHistoryElement(video) | 127 | this.userHistoryService.deleteElement(video) |
128 | .subscribe({ | 128 | .subscribe({ |
129 | next: () => { | 129 | next: () => { |
130 | this.videos = this.videos.filter(v => v.id !== video.id) | 130 | this.videos = this.videos.filter(v => v.id !== video.id) |
@@ -141,7 +141,7 @@ export class MyHistoryComponent implements OnInit, DisableForReuseHook { | |||
141 | const res = await this.confirmService.confirm(message, title) | 141 | const res = await this.confirmService.confirm(message, title) |
142 | if (res !== true) return | 142 | if (res !== true) return |
143 | 143 | ||
144 | this.userHistoryService.clearAllUserVideosHistory() | 144 | this.userHistoryService.clearAll() |
145 | .subscribe({ | 145 | .subscribe({ |
146 | next: () => { | 146 | next: () => { |
147 | this.notifier.success($localize`Videos history deleted`) | 147 | this.notifier.success($localize`Videos history deleted`) |