-
Notifications
You must be signed in to change notification settings - Fork 37
Staging release: Rust widget renderer #1906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 21 commits
b70a34b
539f661
bb3cd67
8af0c02
2db8e84
51bbc6a
36b2721
a80e494
2eaaf05
6143f92
fa7dbbe
d598548
8d0bbd1
936da01
a23cc09
1fa69f2
c1ecb52
d98161b
9c96767
faf7e69
b420feb
4580b73
6cc6804
4b566d9
8ff23e8
2dfa28e
0c32cce
609891d
c6fe6d2
1b0c575
b92b49b
0081849
d48eeb4
cf2a312
0395cf6
fc0ebbe
42d9cc4
21c7ccf
16004a5
1bea5e4
ee4a044
4203ce3
12b0b2f
2e448c4
82b503d
2c78f55
273f1d0
54b8531
2af401e
051deb6
73380ed
0480a2b
d3e0271
6a9cac1
3596c94
e7b114a
3475fe0
14288a9
e304dff
0768a3b
2f0c4ae
decad73
446fc3c
2a919af
39a848c
91a8a15
fea936d
df21164
f376cab
1a85d02
2b1fb3a
4a17475
bbcb0ac
b304af6
0befb69
9dd5ae4
c75835b
e37e530
d073960
96a834b
17c5edb
4a038a7
20ba1df
00aae42
bec0f54
c31ee4d
a5513bd
63126ac
7b1902e
8c589a3
6694a60
33aa4ca
48b4e42
6cbc40a
e654f1a
b17086f
4bd89c1
0979b8e
2f19ac3
572ce1c
0ad8705
f1dd1e6
a3b3e3b
3ae31df
92b1f75
722f8e5
d632d21
875cb7b
4b11274
3ee1dda
24b0e26
93f4271
05fb5a0
32df1a1
763a305
45d9661
513bf2b
3125b91
35b2d51
b07fa59
f6b5555
92d4e38
edc19e4
08faf20
d5a596b
c653d1b
6845520
557f3a5
574de74
c3cf39c
ed37d83
a69e34f
d599a61
dbd4605
84b1031
3f6bf55
c3e3fef
8c3bf7d
adc4305
9ecb049
f527d3b
03fd10d
324730f
6626b3f
8b654bb
ff76f6b
7a7f668
6baf5ca
7779a14
375dde5
194e0fa
cc7e07a
0772ff2
c085a0c
7a4a65a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,3 +1,8 @@ | ||||||
| # frozen_string_literal: true | ||||||
|
|
||||||
| Rails.application.config.session_store :cookie_store, key: '_touchpoints_session', domain: ENV.fetch('TOUCHPOINTS_WEB_DOMAIN'), same_site: :lax, expire_after: 30.minutes | ||||||
| cookie_domain = ENV['SESSION_COOKIE_DOMAIN'].presence | ||||||
|
||||||
| cookie_domain = ENV['SESSION_COOKIE_DOMAIN'].presence | |
| cookie_domain = ENV['SESSION_COOKIE_DOMAIN'].presence || ENV.fetch('TOUCHPOINTS_WEB_DOMAIN') |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The negation pattern on line 44 won't work as intended because line 43 already ignores the parent directory
ext/widget_renderer/target/. In gitignore-style patterns, once a parent directory is ignored, you cannot un-ignore it with a negation pattern before un-ignoring its contents.Consider removing line 43 (
ext/widget_renderer/target/) and keeping only line 42 (target/) which already covers this path. The specific negations on lines 45-46 should then work correctly.