1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 13:53:17 +00:00

10 minute idle timeout

This commit is contained in:
Kyle Spearrin
2018-08-22 22:56:00 -04:00
parent 9ecec972ca
commit 34f6bc2403

View File

@@ -47,7 +47,7 @@ import { RouterService } from './services/router.service';
const BroadcasterSubscriptionId = 'AppComponent'; const BroadcasterSubscriptionId = 'AppComponent';
// Hack due to Angular 5.2 bug // Hack due to Angular 5.2 bug
const swal: SweetAlert = _swal as any; const swal: SweetAlert = _swal as any;
const IdleTimeout = 60000 * 5; // 5 minutes const IdleTimeout = 60000 * 10; // 10 minutes
@Component({ @Component({
selector: 'app-root', selector: 'app-root',