Rename ServerSettings to ServerStatics

This commit is contained in:
jvyden 2021-11-18 23:04:33 -05:00
parent 2f817f9aa8
commit 5de122f1d5
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
8 changed files with 14 additions and 14 deletions

View file

@ -30,7 +30,7 @@ namespace LBPUnion.ProjectLighthouse
public DbSet<RatedLevel> RatedLevels { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder options)
=> options.UseMySql(ServerSettings.DbConnectionString, MySqlServerVersion.LatestSupportedServerVersion);
=> options.UseMySql(ServerStatics.DbConnectionString, MySqlServerVersion.LatestSupportedServerVersion);
public async Task<User> CreateUser(string username)
{