Update
parent
a49c2a1cc0
commit
4da32690a9
|
|
@ -51,3 +51,4 @@ coverage
|
|||
*.tsbuildinfo
|
||||
.vite/*
|
||||
|
||||
proxy.js
|
||||
|
|
|
|||
|
|
@ -28,6 +28,10 @@ def login_required(f):
|
|||
|
||||
def createClientBlueprint(wireguardConfigurations: dict[WireguardConfiguration], dashboardConfig: DashboardConfig):
|
||||
from modules.DashboardClients import DashboardClients
|
||||
|
||||
|
||||
|
||||
DashboardClients = DashboardClients(wireguardConfigurations)
|
||||
|
||||
client = Blueprint('client', __name__, template_folder=os.path.abspath("./static/client/dist"))
|
||||
prefix = f'{dashboardConfig.GetConfig("Server", "app_prefix")[1]}/client'
|
||||
|
|
|
|||
Loading…
Reference in New Issue