mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 21:41:57 -06:00
Port core API routes for sites and devices
This commit is contained in:
@@ -6,7 +6,20 @@ from flask import Flask
|
||||
|
||||
from Data.Engine.services.container import EngineServiceContainer
|
||||
|
||||
from . import admin, agents, auth, enrollment, github, health, job_management, tokens, users
|
||||
from . import (
|
||||
admin,
|
||||
agents,
|
||||
auth,
|
||||
enrollment,
|
||||
github,
|
||||
health,
|
||||
job_management,
|
||||
tokens,
|
||||
users,
|
||||
sites,
|
||||
devices,
|
||||
credentials,
|
||||
)
|
||||
|
||||
_REGISTRARS = (
|
||||
health.register,
|
||||
@@ -18,6 +31,9 @@ _REGISTRARS = (
|
||||
auth.register,
|
||||
admin.register,
|
||||
users.register,
|
||||
sites.register,
|
||||
devices.register,
|
||||
credentials.register,
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user