Files
SfeduSchedule/SfeduSchedule/Auth/ApiKeyAuthenticationDefaults.cs
Sergey Karmanov 82e7d92584
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 3m54s
Добавил получение guid пользователя по фио через токен
2025-09-08 16:52:14 +03:00

7 lines
176 B
C#

namespace SfeduSchedule.Auth;
public static class ApiKeyAuthenticationDefaults
{
public const string Scheme = "ApiKey";
public const string HeaderName = "X-Api-Key";
}