mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-27 10:44:33 +00:00
- New class: `MainCfDiagnosis` - "Advise and repair" mechanism reduces the number of postconf calls - File locking: lock acquisition moved into audit module - Enables finer-grained control
15 lines
222 B
Python
15 lines
222 B
Python
"""The domain audit resource"""
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from . import models
|
|
|
|
|
|
def get():
|
|
# Stub
|
|
return [models.Diagnosis('Email domains')]
|
|
|
|
|
|
def repair():
|
|
# Stub
|
|
raise RuntimeError()
|