mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
23 lines
746 B
Python
23 lines
746 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
FreedomBox app for configuring Transmission.
|
|
"""
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from plinth.modules.storage.forms import (DirectorySelectForm,
|
|
DirectoryValidator)
|
|
|
|
from . import SYSTEM_USER
|
|
|
|
|
|
class TransmissionForm(DirectorySelectForm):
|
|
"""Transmission configuration form"""
|
|
|
|
def __init__(self, *args, **kw):
|
|
validator = DirectoryValidator(username=SYSTEM_USER,
|
|
check_creatable=True)
|
|
super().__init__(title=_('Download directory'),
|
|
default='/var/lib/transmission-daemon/downloads',
|
|
validator=validator, *args, **kw)
|