Update to Angular 16 #16

Merged
k.triantafyllou merged 66 commits from angular-16 into develop 2023-10-30 10:57:26 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9af2fac9a0 - Show all commits

View File

@ -112,7 +112,7 @@ export class Session {
}
public static isCurator(type: string, user: User): boolean {
return stakeholderTypes.find(stakeholderType => stakeholderType.value == type) && this.isTypeCurator(type, user);
return (type === 'community' || stakeholderTypes.find(stakeholderType => stakeholderType.value == type)) && this.isTypeCurator(type, user);
}
public static isPortalAdministrator(user: User): boolean {