Started working on modern policies (from Epiphany)

UI finished, just need to hook it up to the backend.
This commit is contained in:
James Magahern
2021-09-29 18:55:23 -07:00
parent 2e25a303b0
commit 31787f57ae
7 changed files with 377 additions and 100 deletions

View File

@@ -0,0 +1,13 @@
//
// ScriptPolicyViewControllerDelegate.swift
// App
//
// Created by James Magahern on 9/29/21.
//
import Foundation
protocol ScriptPolicyViewControllerDelegate: AnyObject {
func didChangeScriptPolicy()
func setScriptsEnabledForTab(_ enabled: Bool)
}