From: Bill Erickson Date: Thu, 12 Jul 2018 21:30:35 +0000 (-0400) Subject: LP#1775466 StoreService marks all cookies secure X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e8f2e5351c6f3e18d3326d38ae19fade63b0c310;p=working%2FEvergreen.git LP#1775466 StoreService marks all cookies secure Signed-off-by: Bill Erickson --- 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 {