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

index 5a8d7c4..207c525 100644 (file)
@@ -94,8 +94,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);
+
                     });
                 }
             },