Browse Source

Remove `throw new NotImplementedException();`.

pull/10169/head
maliming 4 years ago
parent
commit
cd8b048df2
  1. 8
      modules/cms-kit/test/Volo.CmsKit.TestBase/CmsKitFakeCurrentUser.cs

8
modules/cms-kit/test/Volo.CmsKit.TestBase/CmsKitFakeCurrentUser.cs

@ -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