From 34f6bc2403b1b35e01a4d5261782a3f4f195bc31 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 22 Aug 2018 22:56:00 -0400 Subject: [PATCH] 10 minute idle timeout --- src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 9fdd6998d9d..6422540fb6c 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -47,7 +47,7 @@ import { RouterService } from './services/router.service'; const BroadcasterSubscriptionId = 'AppComponent'; // Hack due to Angular 5.2 bug const swal: SweetAlert = _swal as any; -const IdleTimeout = 60000 * 5; // 5 minutes +const IdleTimeout = 60000 * 10; // 10 minutes @Component({ selector: 'app-root',