Start work on controllers

This commit is contained in:
Nikolaj Geisle
2022-04-01 11:09:51 +02:00
parent 0fc310cc4e
commit 1a6f0e4d7b
71 changed files with 665 additions and 543 deletions

View File

@@ -131,7 +131,7 @@ namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement
return dto == null ? null : MemberGroupFactory.BuildEntity(dto);
}
public IMemberGroup? GetByName(string name)
public IMemberGroup? GetByName(string? name)
{
return IsolatedCache.GetCacheItem<IMemberGroup>(
typeof(IMemberGroup).FullName + "." + name,