Replace the DMP creator with the user roles on the User's profile (ref #224)
This commit is contained in:
parent
c2c837d54e
commit
8b1d285ff4
|
@ -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 '';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue