File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -64,19 +64,16 @@ public static List<IEformPlugin> GetPlugins(IConfiguration configuration)
6464 {
6565 var pluginDbName = $ "Database={ dbPrefix } _{ plugin . PluginId } ;";
6666 var pluginConnectionString = connectionString . Replace ( dbNameSection , pluginDbName ) ;
67- var newPlugin = new EformPlugin ( )
67+ var newPlugin = new EformPlugin
6868 {
6969 PluginId = plugin . PluginId ,
7070 ConnectionString = pluginConnectionString ,
7171 Status = ( int ) PluginStatus . Disabled
7272 } ;
7373 dbContext . EformPlugins . Add ( newPlugin ) ;
7474 dbContext . SaveChanges ( ) ;
75- plugins . Add ( plugin ) ;
7675 }
7776 }
78-
79-
8077 }
8178 }
8279
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ public class UserService : IUserService
1515 private readonly IHttpContextAccessor _httpAccessor ;
1616 private readonly BaseDbContext _dbContext ;
1717
18-
1918 public UserService ( BaseDbContext dbContext ,
2019 UserManager < EformUser > userManager ,
2120 IHttpContextAccessor httpAccessor )
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ public OperationResult Update(WorkerModel workerModel)
6060 }
6161 }
6262
63-
6463 public OperationResult Сreate ( WorkerCreateModel model )
6564 {
6665 try
You can’t perform that action at this time.
0 commit comments