mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-17 14:17:13 +00:00
13 lines
478 B
C#
13 lines
478 B
C#
namespace Readarr.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";
|
|
}
|
|
}
|