Replace the DMP creator with the user roles on the User's profile (ref #224)

This commit is contained in:
George Kalampokis 2020-01-29 18:28:46 +02:00
parent c2c837d54e
commit 8b1d285ff4
1 changed files with 7 additions and 1 deletions

View File

@ -77,7 +77,13 @@ export class UserProfileComponent extends BaseComponent implements OnInit, OnDes
}
getUserRole(dmp: DmpModel) {
if (dmp.creator.id === this.currentUserId) { return this.language.instant('USER-PROFILE.DMPS.CREATOR'); } else if (dmp.associatedUsers.map(x => x.id).indexOf(this.currentUserId) !== -1) { return this.language.instant('USER-PROFILE.DMPS.MEMBER'); }
let role = -1;
dmp.users.forEach(user => {
if (user.id === this.currentUserId) {
role = user.role;
}
});
if (role === 0) { return this.language.instant('USER-PROFILE.DMPS.CREATOR'); } else if (role === 1) { return this.language.instant('USER-PROFILE.DMPS.MEMBER'); }
return '';
}