xxxxxxxxxx
getReferralUrls() {
this.loading = true;
this._TrainingService.getVideosCategoryId({}).subscribe(
(response) => {
if (response?.status) {
this.loading = false;
this._MsgHandelService.showSuccessMsg('', 'successfully');
}
},
(error) => {
this.loading = false;
this._MsgHandelService.handleError(error);
}
);
}