projects
/
working
/
Evergreen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d317258
)
LP#1775466 StoreService marks all cookies secure
author
Bill Erickson
<berickxx@gmail.com>
Thu, 12 Jul 2018 21:30:35 +0000
(17:30 -0400)
committer
Bill Erickson
<berickxx@gmail.com>
Wed, 5 Sep 2018 14:05:23 +0000
(10:05 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/core/store.service.ts
patch
|
blob
|
history
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
5a78f84
..
cce5a46
100644
(file)
--- 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<any> {