}
getVideoEmbed (videoAbuse: VideoAbuse) {
- const absoluteAPIUrl = 'http://localhost:9000' || getAbsoluteAPIUrl() // TODO
+ const absoluteAPIUrl = getAbsoluteAPIUrl()
const embedUrl = buildVideoLink({
baseUrl: absoluteAPIUrl + '/videos/embed/' + videoAbuse.video.uuid,
warningTitle: false
protected loadData () {
return this.videoAbuseService.getVideoAbuses({
pagination: this.pagination,
- sort: this.sort,
+ sort: this.sort,
search: this.search
}).subscribe(
async resultList => {
abstract sort: SortMeta
abstract pagination: RestPagination
- protected search: string
+ search: string
private searchStream: Subject<string>
abstract getIdentifier (): string