abmp-npm 1.1.68 → 1.1.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -444,7 +444,7 @@ const getMemberByEmail = async email => {
|
|
|
444
444
|
const getQAUsers = async () => {
|
|
445
445
|
try {
|
|
446
446
|
return await wixData
|
|
447
|
-
.query(COLLECTIONS.
|
|
447
|
+
.query(COLLECTIONS.QA_Users)
|
|
448
448
|
.include('member')
|
|
449
449
|
.find()
|
|
450
450
|
.then(res => res.items.map(item => item.member));
|
package/backend/utils.js
CHANGED
|
@@ -154,7 +154,7 @@ const normalizeUrlForComparison = url => {
|
|
|
154
154
|
};
|
|
155
155
|
|
|
156
156
|
async function getSecret(secretKey) {
|
|
157
|
-
return await elevatedGetSecretValue(secretKey)
|
|
157
|
+
return await elevatedGetSecretValue(secretKey);
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
async function getSiteBaseUrl() {
|