chore: rename project root directory from 'old-project-name' to 'new-project-name'

This commit is contained in:
2025-11-13 19:42:43 +00:00
parent 702d168c63
commit 55235547b2
53 changed files with 74 additions and 73 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
// static/js/components/cookie-consent.js
import app from '../app.js';
const COOKIE_CONSENT_KEY = 'rbox_cookie_consent';
const COOKIE_CONSENT_KEY = 'mywebdav_cookie_consent';
export class CookieConsent extends HTMLElement {
constructor() {
+1 -1
View File
@@ -60,7 +60,7 @@ export class UserSettings extends HTMLElement {
}
const data = await response.json();
const filename = `rbox_user_data_${new Date().toISOString().slice(0,10)}.json`;
const filename = `mywebdav_user_data_${new Date().toISOString().slice(0,10)}.json`;
const blob = new Blob([JSON.stringify(data, null, 2)], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');