From e7f83127ac4d3228c3adad8e4b64ec2de75c3ac8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 15 Sep 2022 17:19:42 +0200 Subject: [PATCH] Revert "refactor(blazorapp): use Pascal json file" This reverts commit 55c20aec8edba1b14747abccb414260d1bcc5d29. --- .../wwwroot/appsettings.Development.json | 22 +++++----- .../wwwroot/appsettings.heroku-duende.json | 32 +++++++------- .../wwwroot/appsettings.heroku.json | 32 +++++++------- .../wwwroot/appsettings.json | 44 +++++++++---------- 4 files changed, 65 insertions(+), 65 deletions(-) diff --git a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.Development.json b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.Development.json index 80da1a7d5..515aa705a 100644 --- a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.Development.json +++ b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.Development.json @@ -1,20 +1,20 @@ { - "LoggingOptions": { - "Minimum": "Debug", - "Filters": [ + "loggingOptions": { + "minimum": "Debug", + "filters": [ { - "Category": "System", - "Level": "Warning" + "category": "System", + "level": "Warning" }, { - "Category": "Microsoft", - "Level": "Information" + "category": "Microsoft", + "level": "Information" } ] }, - "ProviderOptions": { - "PostLogoutRedirectUri": "https://localhost:5443/authentication/logout-callback", - "RedirectUri": "https://localhost:5443/authentication/login-callback" + "providerOptions": { + "postLogoutRedirectUri": "https://localhost:5443/authentication/logout-callback", + "redirectUri": "https://localhost:5443/authentication/login-callback" }, - "WelcomeContenUrl": "https://localhost:5443/api/welcomefragment" + "welcomeContenUrl": "https://localhost:5443/api/welcomefragment" } diff --git a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku-duende.json b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku-duende.json index d211e56a3..98af711a1 100644 --- a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku-duende.json +++ b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku-duende.json @@ -1,26 +1,26 @@ { - "ApiBaseUrl": "https://theidserver-duende.herokuapp.com/api", - "LoggingOptions": { - "Minimum": "Debug", - "Filters": [ + "apiBaseUrl": "https://theidserver-duende.herokuapp.com/api", + "loggingOptions": { + "minimum": "Debug", + "filters": [ { - "Category": "System", - "Level": "Warning" + "category": "System", + "level": "Warning" }, { - "Category": "Microsoft", - "Level": "Information" + "category": "Microsoft", + "level": "Information" } ] }, - "SettingsOptions": { - "ApiUrl": "https://theidserver-duende.herokuapp.com/api/api/configuration" + "settingsOptions": { + "apiUrl": "https://theidserver-duende.herokuapp.com/api/api/configuration" }, - "ProviderOptions": { - "Authority": "https://theidserver-duende.herokuapp.com/", - "MetadataUrl": "https://theidserver-duende.herokuapp.com/heroku-metadata.json", - "PostLogoutRedirectUri": "https://theidserver-duende.herokuapp.com/authentication/logout-callback", - "RedirectUri": "https://theidserver-duende.herokuapp.com/authentication/login-callback" + "providerOptions": { + "authority": "https://theidserver-duende.herokuapp.com/", + "metadataUrl": "https://theidserver-duende.herokuapp.com/heroku-metadata.json", + "postLogoutRedirectUri": "https://theidserver-duende.herokuapp.com/authentication/logout-callback", + "redirectUri": "https://theidserver-duende.herokuapp.com/authentication/login-callback" }, - "WelcomeContenUrl": "https://theidserver-duende.herokuapp.com/api/welcomefragment" + "welcomeContenUrl": "https://theidserver-duende.herokuapp.com/api/welcomefragment" } diff --git a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku.json b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku.json index c4ea883b2..74f4f5a55 100644 --- a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku.json +++ b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku.json @@ -1,26 +1,26 @@ { - "ApiBaseUrl": "https://theidserver.herokuapp.com/api", - "LoggingOptions": { - "Minimum": "Debug", - "Filters": [ + "apiBaseUrl": "https://theidserver.herokuapp.com/api", + "loggingOptions": { + "minimum": "Debug", + "filters": [ { - "Category": "System", - "Level": "Warning" + "category": "System", + "level": "Warning" }, { - "Category": "Microsoft", - "Level": "Information" + "category": "Microsoft", + "level": "Information" } ] }, - "SettingsOptions": { - "ApiUrl": "https://theidserver.herokuapp.com/api/api/configuration" + "settingsOptions": { + "apiUrl": "https://theidserver.herokuapp.com/api/api/configuration" }, - "ProviderOptions": { - "Authority": "https://theidserver.herokuapp.com/", - "MetadataUrl": "https://theidserver.herokuapp.com/heroku-metadata.json", - "PostLogoutRedirectUri": "https://theidserver.herokuapp.com/authentication/logout-callback", - "RedirectUri": "https://theidserver.herokuapp.com/authentication/login-callback" + "providerOptions": { + "authority": "https://theidserver.herokuapp.com/", + "metadataUrl": "https://theidserver.herokuapp.com/heroku-metadata.json", + "postLogoutRedirectUri": "https://theidserver.herokuapp.com/authentication/logout-callback", + "redirectUri": "https://theidserver.herokuapp.com/authentication/login-callback" }, - "WelcomeContenUrl": "https://theidserver.herokuapp.com/api/welcomefragment" + "welcomeContenUrl": "https://theidserver.herokuapp.com/api/welcomefragment" } diff --git a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.json b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.json index 5838640cd..0ab14083f 100644 --- a/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.json +++ b/src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.json @@ -1,35 +1,35 @@ { - "Prerendered": true, - "AdministratorEmail": "aguacongas@gmail.com", - "ApiBaseUrl": "https://localhost:5443/api", - "LoggingOptions": { - "Minimum": "Warning" + "prerendered": true, + "administratorEmail": "aguacongas@gmail.com", + "apiBaseUrl": "https://localhost:5443/api", + "loggingOptions": { + "minimum": "Warning" }, - "AuthenticationPaths": { - "RemoteRegisterPath": "/identity/account/register", - "RemoteProfilePath": "/identity/account/manage" + "authenticationPaths": { + "remoteRegisterPath": "/identity/account/register", + "remoteProfilePath": "/identity/account/manage" }, - "UserOptions": { + "userOptions": { "roleClaim": "role" }, - "ProviderOptions": { - "Authority": "https://localhost:5443/", - "ClientId": "theidserveradmin", - "DefaultScopes": [ + "providerOptions": { + "authority": "https://localhost:5443/", + "clientId": "theidserveradmin", + "defaultScopes": [ "openid", "profile", "theidserveradminapi" ], - "PostLogoutRedirectUri": "/authentication/logout-callback", - "RedirectUri": "/authentication/login-callback", - "ResponseType": "code" + "postLogoutRedirectUri": "/authentication/logout-callback", + "redirectUri": "/authentication/login-callback", + "responseType": "code" }, - "WelcomeContenUrl": "/api/welcomefragment", - "SettingsOptions": { - "TypeName": "Aguacongas.TheIdServer.BlazorApp.Models.ServerConfig, Aguacongas.TheIdServer.BlazorApp.Infrastructure", - "ApiUrl": "https://localhost:5443/api/api/configuration" + "welcomeContenUrl": "/api/welcomefragment", + "settingsOptions": { + "typeName": "Aguacongas.TheIdServer.BlazorApp.Models.ServerConfig, Aguacongas.TheIdServer.BlazorApp.Infrastructure", + "apiUrl": "https://localhost:5443/api/api/configuration" }, - "MenuOptions": { - "ShowSettings": true + "menuOptions": { + "showSettings": true } }