Skip to content

Commit 6807dd8

Browse files
Property IsStatic in Role should not be created or updated. Fixes : #398
1 parent 7c01f54 commit 6807dd8

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Application/Roles/Dto/CreateRoleDto.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ public class CreateRoleDto
2222
[StringLength(Role.MaxDescriptionLength)]
2323
public string Description { get; set; }
2424

25-
public bool IsStatic { get; set; }
26-
2725
public List<string> Permissions { get; set; }
2826
}
2927
}

aspnet-core/src/AbpCompanyName.AbpProjectName.Application/Roles/Dto/RoleDto.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ public class RoleDto : EntityDto<int>
2323
[StringLength(Role.MaxDescriptionLength)]
2424
public string Description { get; set; }
2525

26-
public bool IsStatic { get; set; }
27-
2826
public List<string> Permissions { get; set; }
2927
}
3028
}

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration>
33
<system.webServer>
44
<handlers>
5-
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
5+
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
66
</handlers>
77
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
88
<environmentVariables />

0 commit comments

Comments
 (0)