-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "refactor(blazorapp): use Pascal json file"
This reverts commit 55c20ae.
- Loading branch information
github-actions
committed
Sep 15, 2022
1 parent
d2a53c5
commit e7f8312
Showing
4 changed files
with
65 additions
and
65 deletions.
There are no files selected for viewing
22 changes: 11 additions & 11 deletions
22
src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.Development.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
32 changes: 16 additions & 16 deletions
32
src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku-duende.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
32 changes: 16 additions & 16 deletions
32
src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.heroku.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
44
src/Aguacongas.TheIdServer.BlazorApp/wwwroot/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |