Skip to content

Commit

Permalink
Revert "refactor(blazorapp): use Pascal json file"
Browse files Browse the repository at this point in the history
This reverts commit 55c20ae.
  • Loading branch information
github-actions committed Sep 15, 2022
1 parent d2a53c5 commit e7f8312
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 65 deletions.
Original file line number Diff line number Diff line change
@@ -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"
}
Original file line number Diff line number Diff line change
@@ -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"
}
Original file line number Diff line number Diff line change
@@ -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"
}
44 changes: 22 additions & 22 deletions src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"Prerendered": true,
"AdministratorEmail": "[email protected]",
"ApiBaseUrl": "https://localhost:5443/api",
"LoggingOptions": {
"Minimum": "Warning"
"prerendered": true,
"administratorEmail": "[email protected]",
"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
}
}

0 comments on commit e7f8312

Please sign in to comment.