server: load "authorization" as a core component

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2024-01-28 05:42:22 -05:00
parent c756a9029a
commit bc18e3174a
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 4 additions and 4 deletions

View File

@ -59,10 +59,10 @@ if TYPE_CHECKING:
API_VERSION = (1, 4, 0)
SERVER_COMPONENTS = ['application', 'websockets', 'klippy_connection']
CORE_COMPONENTS = [
'dbus_manager', 'database', 'file_manager', 'klippy_apis',
'machine', 'data_store', 'shell_command', 'proc_stats',
'job_state', 'job_queue', 'http_client', 'announcements',
'webcam', 'extensions',
'dbus_manager', 'database', 'file_manager', 'authorization',
'klippy_apis', 'machine', 'data_store', 'shell_command',
'proc_stats', 'job_state', 'job_queue', 'http_client',
'announcements', 'webcam', 'extensions'
]