Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow user to search through their watch history #3576

Merged
merged 3 commits into from
Jan 13, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update client/src/app/shared/shared-main/users/user-history.service.ts
  • Loading branch information
rigelk authored Jan 11, 2021
commit f31af8644ea74579f8a27cf83fb56f7b1e6e70f8
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class UserHistoryService {

let params = new HttpParams()
params = this.restService.addRestGetParams(params, pagination)
params = this.restService.addObjectParams(params, { search })
params = params.append('search', search)

return this.authHttp
.get<ResultList<Video>>(UserHistoryService.BASE_USER_VIDEOS_HISTORY_URL, { params })
Expand Down