mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
[Task 72956] removed console logs
This commit is contained in:
@@ -137,11 +137,9 @@ export class EPeopleRegistryComponent implements OnInit, OnDestroy {
|
|||||||
this.ePeople$.pipe(
|
this.ePeople$.pipe(
|
||||||
getAllSucceededRemoteDataPayload(),
|
getAllSucceededRemoteDataPayload(),
|
||||||
switchMap((epeople) => {
|
switchMap((epeople) => {
|
||||||
console.log(epeople);
|
|
||||||
return combineLatest(...epeople.page.map((eperson) => {
|
return combineLatest(...epeople.page.map((eperson) => {
|
||||||
return this.authorizationService.isAuthorized(FeatureID.CanDelete, hasValue(eperson) ? eperson.self : undefined).pipe(
|
return this.authorizationService.isAuthorized(FeatureID.CanDelete, hasValue(eperson) ? eperson.self : undefined).pipe(
|
||||||
map((authorized) => {
|
map((authorized) => {
|
||||||
console.log(authorized);
|
|
||||||
const epersonDtoModel: EpersonDtoModel = new EpersonDtoModel();
|
const epersonDtoModel: EpersonDtoModel = new EpersonDtoModel();
|
||||||
epersonDtoModel.ableToDelete = authorized;
|
epersonDtoModel.ableToDelete = authorized;
|
||||||
epersonDtoModel.eperson = eperson;
|
epersonDtoModel.eperson = eperson;
|
||||||
|
Reference in New Issue
Block a user