From e8f2e5351c6f3e18d3326d38ae19fade63b0c310 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 12 Jul 2018 17:30:35 -0400 Subject: [PATCH] LP#1775466 StoreService marks all cookies secure Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/core/store.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/core/store.service.ts b/Open-ILS/src/eg2/src/app/core/store.service.ts index 5a78f840f7..cce5a4686a 100644 --- a/Open-ILS/src/eg2/src/app/core/store.service.ts +++ b/Open-ILS/src/eg2/src/app/core/store.service.ts @@ -71,7 +71,8 @@ export class StoreService { if (!isJson) { val = JSON.stringify(val); } - this.cookieService.put(key, val, {path : this.loginSessionBasePath}); + this.cookieService.put(key, val, + {path : this.loginSessionBasePath, secure: true}); } getItem(key: string): Promise { -- 2.11.0