Code reformat.

This commit is contained in:
2019-11-25 00:54:39 +00:00
parent 9e90847e3a
commit 9b916b64df
15 changed files with 21 additions and 26 deletions

View File

@@ -20,9 +20,10 @@ namespace DiscImageChef.Server
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<DicServerContext>(options =>
options.UseMySql(Configuration.
GetConnectionString("DefaultConnection")).UseLazyLoadingProxies());
services.AddDbContext<DicServerContext>(options => options.
UseMySql(Configuration.
GetConnectionString("DefaultConnection")).
UseLazyLoadingProxies());
services.AddDefaultIdentity<IdentityUser>(options =>
{