tgstation-server
The /tg/station 13 server suite
ControlPanelConfiguration.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
4 {
8  public sealed class ControlPanelConfiguration
9  {
13  public const string Section = "ControlPanel";
14 
18  public bool Enable { get; set; }
19 
23  public bool AllowAnyOrigin { get; set; }
24 
28  public List<string> AllowedOrigins { get; set; }
29  }
30 }
List< string > AllowedOrigins
Origins allowed for CORS requests
bool AllowAnyOrigin
If any origin is allowed for CORS requests. This overrides AllowedOrigins
const string Section
The key for the Microsoft.Extensions.Configuration.IConfigurationSection the ControlPanelConfiguratio...