added permissions for website

This commit is contained in:
2024-11-04 11:55:14 -05:00
parent 5c845ffe61
commit 014e4c8b7b
19 changed files with 507 additions and 71 deletions
+7 -3
View File
@@ -6,11 +6,12 @@ import { getSavedTabs, loadTabs } from '../utils/clearCache.js';
import flushCookies from '../utils/cookies.js';
import { askUserQuestion } from '../utils/dialogue.js';
import ipcinit from '../utils/ipc.js';
import { checkInternetConnectivity } from '../utils/misc.js';
import { checkInternetConnectivity, isValidURL } from '../utils/misc.js';
import { findPath } from '../utils/paths.js';
import { createWebview, handleWebViewInit } from '../utils/webviewHelpers.js';
import blocked from './adblock.js';
const { setupRedis, quitRedis } = await import('../serverJS/history.cjs');
const { setupRedis, quitRedis, redisclient } = await import('../serverJS/history.cjs');
const { logger } = loggermod;
export {
@@ -28,5 +29,8 @@ export {
createWebview,
handleWebViewInit,
setupRedis,
quitRedis
quitRedis,
redisclient,
blocked,
isValidURL
};