doc: dev: Update documentation on calling clients validation

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
This commit is contained in:
Sunil Mohan Adapa 2020-09-27 20:53:13 -07:00 committed by Veiko Aasa
parent 6fc9e228a0
commit 838a2ede8c
No known key found for this signature in database
GPG Key ID: 478539CAE680674E

View File

@ -13,24 +13,20 @@ need to list them and present them. Let's add this information to
.. code-block:: python3
from plinth.clients import validate
clients = validate([{
clients = [{
'name': _('Transmission'),
'platforms': [{
'type': 'web',
'url': '/transmission'
}]
}])
}]
Since our app is a simple web application with no clients needed, we just list
that. We need to include this into the main app view. In ``__init__.py``, add:
.. code-block:: python3
from .manifest import clients
clients = clients
from . import manifest
In ``views.py``, add: