chore: fix role creation on app startup

fixes #8
kudos to @FunTomOftheBlueScreen@utb.cz
This commit is contained in:
surtur 2021-01-28 17:18:15 +01:00
parent 24a830b523
commit 9cd1188714
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -6,6 +6,6 @@ namespace pwt_0x01_ng.Models.Identity
{
public class Role : IdentityRole<int>
{
public Role(string name) : base(){}
public Role(string name) : base(name){}
}
}