mirror of
https://github.com/Radarr/Radarr
synced 2026-02-13 10:12:17 +01:00
12 lines
477 B
C#
12 lines
477 B
C#
namespace Radarr.Http.Extensions
|
|
{
|
|
public static class AccessControlHeaders
|
|
{
|
|
public const string RequestMethod = "Access-Control-Request-Method";
|
|
public const string RequestHeaders = "Access-Control-Request-Headers";
|
|
|
|
public const string AllowOrigin = "Access-Control-Allow-Origin";
|
|
public const string AllowMethods = "Access-Control-Allow-Methods";
|
|
public const string AllowHeaders = "Access-Control-Allow-Headers";
|
|
}
|
|
}
|