Change domain
Some checks failed
Build, Push and Run Container / build (push) Failing after 3s

This commit is contained in:
2025-08-12 21:36:18 +02:00
parent 49138d5b9d
commit 7fe4e6aef2
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ WebApplication app = builder.Build();
if (app.Environment.IsDevelopment())
{
app.MapOpenApi();
app.MapGet("/GetPartnerAuthenticationToken", ([FromServices] TeslaAuthenticatorService service) => service.AcquirePartnerAuthenticationTokenAsync());
app.MapGet("/GetPartnerAuthenticationToken", ([FromServices] TeslaAuthenticatorService service) => service.GetPartnerAuthenticationTokenAsync());
app.MapGet("/CheckRegisteredApplication", ([FromServices] TeslaAuthenticatorService service) => service.CheckApplicationRegistrationAsync());
app.MapGet("/RegisterApplication", ([FromServices] TeslaAuthenticatorService service) => service.RegisterApplicationAsync());
}