Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 9s
12 lines
401 B
C#
12 lines
401 B
C#
using System.Text.Encodings.Web;
|
|
using System.Text.Json;
|
|
|
|
namespace ModeusSchedule.Abstractions;
|
|
|
|
public static class GlobalConsts
|
|
{
|
|
public static readonly JsonSerializerOptions JsonSerializerOptions = new()
|
|
{ PropertyNamingPolicy = JsonNamingPolicy.CamelCase, Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping };
|
|
|
|
public static string JwtFilePath { get; set; } = "data/jwt.txt";
|
|
} |