Commit 8b1d285f authored by George Kalampokis's avatar George Kalampokis
Browse files

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

parent c2c837d5
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -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 '';
	}