Merge branch 'develop' into feature/hotkeys

This commit is contained in:
Nikita Gopienko 2022-02-14 16:41:05 +03:00 committed by GitHub
commit 65de0c4e97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -71,6 +71,8 @@ namespace ASC.Studio.Notify
.ConfigureServices((hostContext, services) =>
{
services.AddMemoryCache();
services.AddHttpClient();
var diHelper = new DIHelper(services);
var redisConfiguration = hostContext.Configuration.GetSection("Redis").Get<RedisConfiguration>();

View File

@ -73,6 +73,7 @@ namespace ASC.Files.Service
.ConfigureServices((hostContext, services) =>
{
services.AddMemoryCache();
services.AddHttpClient();
var diHelper = new DIHelper(services);