From 1d482a4ec2cf24dbe7cc6cb02e192e1b9545f796 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Mon, 14 Feb 2022 19:02:54 +0100 Subject: feat: Experiment with tailwind --- src/server/Startup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/Startup.cs') 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(Constants.BASIC_AUTH_SCHEME, default); + .AddScheme(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; }); } } -- cgit v1.3