Remove blank page route (#3933)

* remove blank page route

* remove blank page route
This commit is contained in:
Denys Vuika 2024-07-12 09:16:07 -04:00 committed by GitHub
parent e7cd5741d2
commit 5a588ff9b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 6 deletions

View File

@ -24,7 +24,7 @@
"implicitFlow": false, "implicitFlow": false,
"codeFlow": true, "codeFlow": true,
"silentLogin": true, "silentLogin": true,
"publicUrls": ["**/preview/s/*", "**/settings", "**/blank"], "publicUrls": ["**/preview/s/*", "**/settings"],
"redirectSilentIframeUri": "{protocol}//{hostname}{:port}/assets/silent-refresh.html", "redirectSilentIframeUri": "{protocol}//{hostname}{:port}/assets/silent-refresh.html",
"redirectUri": "/", "redirectUri": "/",
"redirectUriLogout": "/", "redirectUriLogout": "/",

View File

@ -22,14 +22,9 @@
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>. * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/ */
import { BlankPageComponent } from '@alfresco/adf-core';
import { AppLoginComponent } from './components/login/app-login.component'; import { AppLoginComponent } from './components/login/app-login.component';
export const APP_ROUTES = [ export const APP_ROUTES = [
{
path: 'blank',
component: BlankPageComponent
},
{ {
path: 'login', path: 'login',
component: AppLoginComponent, component: AppLoginComponent,