chore: rename project root directory from 'old-project-name' to 'new-project-name'
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user