2021-10-09 22:11:47 -04:00
|
|
|
|
using SharedLibraryCore.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.Extensions
|
|
|
|
|
{
|
|
|
|
|
public static class WebfrontExtensions
|
|
|
|
|
{
|
|
|
|
|
public static bool ShouldUseFallbackBranding(this ApplicationConfiguration appConfig) =>
|
2021-10-10 11:44:18 -04:00
|
|
|
|
string.IsNullOrWhiteSpace(appConfig?.CommunityInformation?.Name) ||
|
|
|
|
|
appConfig.CommunityInformation.Name.Contains("IW4MAdmin") || !appConfig.CommunityInformation.IsEnabled;
|
2021-10-09 22:11:47 -04:00
|
|
|
|
}
|
|
|
|
|
}
|