jekyll-attendease 0.6.26 → 0.6.27.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 073f442287f72f928ac8109a8abbd055d9222c44
|
4
|
+
data.tar.gz: 19861e212f8547adfdf0205cc1d90bf05555ce7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ae001693952cd39367e8bd5f4fcde8dd353d9b8249190d8de13c82a098e93ed6d5d38dd33d18a639333071edcddfc59c9f0cdd6fabb96fd0b87db7019e68e10
|
7
|
+
data.tar.gz: 1597cd0e413144e1bfbc91fbc906874a4f8dbc082edabfe9ad17eda5ac49d0feac09298353717c137d7046872e80f454e42fc7f93a2a2bc70b50b61a52c49b3f
|
@@ -162,7 +162,7 @@ module Jekyll
|
|
162
162
|
locale: "en",
|
163
163
|
orgApiEndpoint: "#{ config['api_host'] }api",
|
164
164
|
orgId: "#{ config['source_id'] }",
|
165
|
-
authApiEndpoint: "#{ config['auth_host'] }",
|
165
|
+
authApiEndpoint: "#{ config['auth_host'] }api",
|
166
166
|
orgLocales: #{ config['available_portal_locales'] }
|
167
167
|
}
|
168
168
|
})(window)
|
@@ -179,7 +179,7 @@ _EOT
|
|
179
179
|
eventId: "#{ config['source_id'] }",
|
180
180
|
orgApiEndpoint: "#{ config['organization_url'] }api",
|
181
181
|
orgId: "#{ config['organization_id'] }",
|
182
|
-
authApiEndpoint: "#{ config['auth_host'] }"
|
182
|
+
authApiEndpoint: "#{ config['auth_host'] }api"
|
183
183
|
}
|
184
184
|
})(window)
|
185
185
|
</script>
|
@@ -89,7 +89,7 @@ RSpec.describe "Jekyll Attendease tags" do
|
|
89
89
|
it { is_expected.to match(/eventId: "foobar"/) }
|
90
90
|
it { is_expected.to match(/orgApiEndpoint: "https:\/\/foobar\.org\/api"/) }
|
91
91
|
it { is_expected.to match(/orgId: "batbaz"/) }
|
92
|
-
it { is_expected.to match(/authApiEndpoint: "https:\/\/foobar.auth\/"/) }
|
92
|
+
it { is_expected.to match(/authApiEndpoint: "https:\/\/foobar.auth\/api"/) }
|
93
93
|
it { is_expected.to match(/dashboard.attendease.com\/webpack_assets\/blockrenderer.bundle.js/) }
|
94
94
|
it { is_expected.to_not match(/orgLocales/) }
|
95
95
|
end
|
@@ -106,7 +106,7 @@ RSpec.describe "Jekyll Attendease tags" do
|
|
106
106
|
it { is_expected.to match(/locale: "en"/) }
|
107
107
|
it { is_expected.to match(/orgApiEndpoint: "https:\/\/foobar\/api"/) }
|
108
108
|
it { is_expected.to match(/orgId: "foobar"/) }
|
109
|
-
it { is_expected.to match(/authApiEndpoint: "https:\/\/foobar.auth\/"/) }
|
109
|
+
it { is_expected.to match(/authApiEndpoint: "https:\/\/foobar.auth\/api"/) }
|
110
110
|
it { is_expected.to match(/dashboard.attendease.com\/webpack_assets\/blockrenderer.bundle.js/) }
|
111
111
|
it { is_expected.to match(/orgLocales: \["en", "fr", "it", "es", "de"\]/) }
|
112
112
|
|