Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
A catalogue is a curated set of resources that has its own web page.
</p>
<p>
You can contribute a resource as an editor of a catalogue or in your own name.
To contribute a resource in your own name, select Community contributions from the drop down menu.
You can contribute a resource as an editor of a catalogue.
</p>
<p>
You can manage all resources that you have contributed in the My contributions area.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
A catalogue is a curated set of resources that has its own web page.
</p>
<p>
You can contribute a resource as an editor of a catalogue or in your own name.
To contribute a resource in your own name, select Community contributions from the drop down menu.
You can contribute a resource as an editor of a catalogue.
</p>
<p>
You can manage all resources that you have contributed in the My contributions area.
Expand Down
2 changes: 1 addition & 1 deletion LearningHub.Nhs.WebUI/Services/UserGroupService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public async Task<List<RoleUserGroupViewModel>> GetRoleUserGroupDetailForUserAsy
public async Task<bool> UserHasCatalogueContributionPermission()
{
var userRoleGroups = await this.GetRoleUserGroupDetailAsync();
if (userRoleGroups != null && userRoleGroups.Any(r => r.RoleEnum == RoleEnum.LocalAdmin || r.RoleEnum == RoleEnum.Editor))
if (userRoleGroups != null && userRoleGroups.Any(r => r.RoleEnum == RoleEnum.Editor))
{
return true;
}
Expand Down
Loading