LP1848550 / LP1835128 Redirect to AngJS splash page
authorBill Erickson <berickxx@gmail.com>
Thu, 26 Dec 2019 17:17:55 +0000 (12:17 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Tue, 7 Apr 2020 17:13:26 +0000 (13:13 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/staff/login.component.ts

index 5487575..e0aa466 100644 (file)
@@ -90,8 +90,12 @@ export class StaffLoginComponent implements OnInit {
                         // Force reload of the app after a successful login.
                         // This allows the route resolver to re-run with a
                         // valid auth token and workstation.
-                        window.location.href =
-                            this.ngLocation.prepareExternalUrl(url);
+
+                        // Temporarily redirect to AngularJS splash page
+                        // (LP#1848550/LP#1835128)
+                        window.location.href = '/eg/staff/splash';
+                            // this.ngLocation.prepareExternalUrl(url);
+
                     });
                 }
             },