Remove `throw new NotImplementedException();`.

pull/10169/head
maliming 4 years ago
parent a367a785cf
commit cd8b048df2

@ -32,22 +32,22 @@ namespace Volo.CmsKit
public Claim FindClaim(string claimType)
{
throw new NotImplementedException();
return null;
}
public Claim[] FindClaims(string claimType)
{
throw new NotImplementedException();
return null;
}
public Claim[] GetAllClaims()
{
throw new NotImplementedException();
return null;
}
public bool IsInRole(string roleName)
{
throw new NotImplementedException();
return false;
}
}
}

Loading…
Cancel
Save