Mark some CVars as CONFIDENTIAL. (#10468)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
committed by
GitHub
parent
044e688ce8
commit
cdae608e3c
@@ -90,7 +90,7 @@ namespace Content.Shared.CCVar
|
||||
CVarDef.Create("status.mommiurl", "", CVar.SERVERONLY);
|
||||
|
||||
public static readonly CVarDef<string> StatusMoMMIPassword =
|
||||
CVarDef.Create("status.mommipassword", "", CVar.SERVERONLY);
|
||||
CVarDef.Create("status.mommipassword", "", CVar.SERVERONLY | CVar.CONFIDENTIAL);
|
||||
|
||||
|
||||
/*
|
||||
@@ -386,7 +386,7 @@ namespace Content.Shared.CCVar
|
||||
CVarDef.Create("database.pg_username", "", CVar.SERVERONLY);
|
||||
|
||||
public static readonly CVarDef<string> DatabasePgPassword =
|
||||
CVarDef.Create("database.pg_password", "", CVar.SERVERONLY);
|
||||
CVarDef.Create("database.pg_password", "", CVar.SERVERONLY | CVar.CONFIDENTIAL);
|
||||
|
||||
// Basically only exists for integration tests to avoid race conditions.
|
||||
public static readonly CVarDef<bool> DatabaseSynchronous =
|
||||
|
||||
Reference in New Issue
Block a user