Skip to content

Commit

Permalink
Merge pull request #5176 from kjac/v8-fix-map-usergroup-assigneduserg…
Browse files Browse the repository at this point in the history
…rouppermissions

V8: Fix node permissions YSOD (mapping issue)
  • Loading branch information
zpqrtbnk authored Apr 6, 2019
2 parents 4f6f5cc + 851f745 commit 9c06ef8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Umbraco.Web/Models/Mapping/UserMapDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ private void Map(IUserGroup source, UserGroupBasic target, MapperContext context
// Umbraco.Code.MapAll -Udi -Trashed -AdditionalData -Id -AssignedPermissions
private void Map(IUserGroup source, AssignedUserGroupPermissions target, MapperContext context)
{
target.Id = source.Id;
target.Alias = source.Alias;
target.Icon = source.Icon;
target.Key = source.Key;
Expand Down

0 comments on commit 9c06ef8

Please sign in to comment.