mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
[joseph: initial code for the app] Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com> [sunil: use the modified framework API] [sunil: simplify setup logic, move to service file] [sunil: strict security for service file, dynamic users] [sunil: interface for managing libraries] [sunil: implement backup/restore] [sunil: add functional, action, and view tests] [sunil: use svg icon] [sunil: update description] [sunil: fix apache configuration] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
22 lines
505 B
Python
22 lines
505 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from plinth.clients import validate
|
|
from plinth.modules.backups.api import validate as validate_backup
|
|
|
|
clients = validate([{
|
|
'name': _('calibre'),
|
|
'platforms': [{
|
|
'type': 'web',
|
|
'url': '/calibre/'
|
|
}]
|
|
}])
|
|
|
|
backup = validate_backup({
|
|
'data': {
|
|
'directories': ['/var/lib/private/calibre-server-freedombox/']
|
|
},
|
|
'services': ['calibre-server-freedombox']
|
|
})
|