Sunil Mohan Adapa 8478450467
quassel: Use privileged decorator for actions
Tests:

- Functional tests work
- Setting the domain updates the configuration file, reflects in the app page

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2022-10-08 18:52:50 -04:00

14 lines
347 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""Configure Quassel."""
import pathlib
from plinth.actions import privileged
@privileged
def set_domain(domain_name: str):
"""Write a file containing domain name."""
domain_file = pathlib.Path('/var/lib/quassel/domain-freedombox')
domain_file.write_text(domain_name, encoding='utf-8')