ultimate-jekyll-manager 0.0.160 → 0.0.161
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.
- package/dist/assets/js/core/auth.js +1 -1
- package/dist/assets/js/libs/form-manager.js +5 -0
- package/dist/assets/js/pages/account/sections/api-keys.js +1 -1
- package/dist/assets/js/pages/account/sections/connections.js +1 -1
- package/dist/assets/js/pages/account/sections/security.js +1 -1
- package/dist/assets/js/pages/download/index.js +1 -1
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/contact.html +2 -2
- package/package.json +1 -1
|
@@ -189,7 +189,7 @@ async function sendUserSignupMetadata(user, webManager) {
|
|
|
189
189
|
};
|
|
190
190
|
|
|
191
191
|
// Get server API URL
|
|
192
|
-
const serverApiURL = webManager.getApiUrl()
|
|
192
|
+
const serverApiURL = `${webManager.getApiUrl()}/backend-manager`;
|
|
193
193
|
|
|
194
194
|
// Make API call to send signup metadata
|
|
195
195
|
const response = await authorizedFetch(serverApiURL, {
|
|
@@ -367,6 +367,11 @@ export class FormManager {
|
|
|
367
367
|
return;
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
+
// Skip if field is not in current input group (respects setInputGroup filter)
|
|
371
|
+
if (!this._isFieldInGroup($field)) {
|
|
372
|
+
return;
|
|
373
|
+
}
|
|
374
|
+
|
|
370
375
|
// Skip if already has an error (from previous validation)
|
|
371
376
|
if (this._fieldErrors[name]) {
|
|
372
377
|
return;
|
|
@@ -65,7 +65,7 @@ function setupResetApiKeyForm() {
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
// Get server API URL
|
|
68
|
-
const serverApiURL = webManager.getApiUrl()
|
|
68
|
+
const serverApiURL = `${webManager.getApiUrl()}/backend-manager`;
|
|
69
69
|
|
|
70
70
|
// Make API call to reset API key
|
|
71
71
|
const response = await authorizedFetch(serverApiURL, {
|
|
@@ -16,7 +16,7 @@ const supportedProviders = ['google', 'discord', 'github', 'twitter', 'facebook'
|
|
|
16
16
|
|
|
17
17
|
// Get API URL helper
|
|
18
18
|
function getApiUrl() {
|
|
19
|
-
return webManager.getApiUrl()
|
|
19
|
+
return `${webManager.getApiUrl()}/backend-manager`;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
// Initialize connections section
|
|
@@ -198,7 +198,7 @@ async function updateActiveSessions(account) {
|
|
|
198
198
|
|
|
199
199
|
// Fetch other active sessions from server
|
|
200
200
|
try {
|
|
201
|
-
const serverApiURL = webManager.getApiUrl()
|
|
201
|
+
const serverApiURL = `${webManager.getApiUrl()}/backend-manager`;
|
|
202
202
|
|
|
203
203
|
const data = await authorizedFetch(serverApiURL, {
|
|
204
204
|
method: 'POST',
|
|
@@ -207,7 +207,7 @@ function setupMobileEmailForms() {
|
|
|
207
207
|
console.log('Mobile email form submitted:', { platform, email: data.email });
|
|
208
208
|
|
|
209
209
|
// Get API endpoint
|
|
210
|
-
const apiEndpoint = webManager.getApiUrl()
|
|
210
|
+
const apiEndpoint = `${webManager.getApiUrl()}/backend-manager`;
|
|
211
211
|
|
|
212
212
|
// Send request using wonderful-fetch
|
|
213
213
|
await fetch(apiEndpoint, {
|
|
@@ -209,8 +209,8 @@ faqs:
|
|
|
209
209
|
</div>
|
|
210
210
|
|
|
211
211
|
<!-- Hidden auth fields (auto-populated via bindings) -->
|
|
212
|
-
<input type="hidden" name="auth.user.uid" data-wm-bind="@value auth.user.uid">
|
|
213
|
-
<input type="hidden" name="auth.user.email" data-wm-bind="@value auth.user.email">
|
|
212
|
+
<input type="hidden" aria-hidden="true" name="auth.user.uid" data-wm-bind="@value auth.user.uid">
|
|
213
|
+
<input type="hidden" aria-hidden="true" name="auth.user.email" data-wm-bind="@value auth.user.email">
|
|
214
214
|
|
|
215
215
|
<div class="mb-4">
|
|
216
216
|
<label for="email" class="form-label fw-semibold">Email Address <span class="text-danger">*</span></label>
|