summaryrefslogtreecommitdiffstats
path: root/src/server/Startup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/Startup.cs')
-rw-r--r--src/server/Startup.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/Startup.cs b/src/server/Startup.cs
index 8b831c1..0d7c05f 100644
--- a/src/server/Startup.cs
+++ b/src/server/Startup.cs
@@ -79,7 +79,7 @@ public class Startup
};
options.Events.OnCreatingTicket = context => HandleGithubCreatingTicket.Handle(context, Configuration);
})
- .AddScheme<AuthenticationSchemeOptions, BasicAuthenticationHandler>(Constants.BASIC_AUTH_SCHEME, default);
+ .AddScheme<AuthenticationSchemeOptions, BasicAuthenticationHandler>(AppConstants.BASIC_AUTH_SCHEME, default);
services.AddLogging();
services.AddHttpClient();
@@ -157,7 +157,7 @@ public class Startup
app.UseSwagger();
app.UseSwaggerUI(options => {
options.SwaggerEndpoint(ApiSpecV1.Document.SwaggerPath, ApiSpecV1.Document.VersionName);
- options.DocumentTitle = Constants.API_NAME;
+ options.DocumentTitle = AppConstants.API_NAME;
});
}
}