From 04318d7e9d25ff9ac4c9dde33c1bb2df6f47c133 Mon Sep 17 00:00:00 2001 From: Leonid Date: Fri, 22 Feb 2019 12:54:21 +0200 Subject: [PATCH] Fix disabled plugins --- eFormAPI/eFormAPI.Web/Hosting/Helpers/PluginHelper.cs | 5 +---- eFormAPI/eFormAPI.Web/Services/UserService.cs | 1 - eFormAPI/eFormAPI.Web/Services/WorkersService.cs | 1 - 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/eFormAPI/eFormAPI.Web/Hosting/Helpers/PluginHelper.cs b/eFormAPI/eFormAPI.Web/Hosting/Helpers/PluginHelper.cs index bd71b3a58a..5c365a0731 100644 --- a/eFormAPI/eFormAPI.Web/Hosting/Helpers/PluginHelper.cs +++ b/eFormAPI/eFormAPI.Web/Hosting/Helpers/PluginHelper.cs @@ -64,7 +64,7 @@ public static List GetPlugins(IConfiguration configuration) { var pluginDbName = $"Database={dbPrefix}_{plugin.PluginId};"; var pluginConnectionString = connectionString.Replace(dbNameSection, pluginDbName); - var newPlugin = new EformPlugin() + var newPlugin = new EformPlugin { PluginId = plugin.PluginId, ConnectionString = pluginConnectionString, @@ -72,11 +72,8 @@ public static List GetPlugins(IConfiguration configuration) }; dbContext.EformPlugins.Add(newPlugin); dbContext.SaveChanges(); - plugins.Add(plugin); } } - - } } diff --git a/eFormAPI/eFormAPI.Web/Services/UserService.cs b/eFormAPI/eFormAPI.Web/Services/UserService.cs index a8ab4aa991..12f9477aed 100644 --- a/eFormAPI/eFormAPI.Web/Services/UserService.cs +++ b/eFormAPI/eFormAPI.Web/Services/UserService.cs @@ -15,7 +15,6 @@ public class UserService : IUserService private readonly IHttpContextAccessor _httpAccessor; private readonly BaseDbContext _dbContext; - public UserService(BaseDbContext dbContext, UserManager userManager, IHttpContextAccessor httpAccessor) diff --git a/eFormAPI/eFormAPI.Web/Services/WorkersService.cs b/eFormAPI/eFormAPI.Web/Services/WorkersService.cs index a99f44d5fc..a16d5365ed 100644 --- a/eFormAPI/eFormAPI.Web/Services/WorkersService.cs +++ b/eFormAPI/eFormAPI.Web/Services/WorkersService.cs @@ -60,7 +60,6 @@ public OperationResult Update(WorkerModel workerModel) } } - public OperationResult Сreate(WorkerCreateModel model) { try