shaarli: Add android app to description

[sunil: Fix typo, indentation and add module comment]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Benedek Nagy 2022-01-16 19:14:43 +00:00 committed by Sunil Mohan Adapa
parent d355f727c3
commit 44bff730f3
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -1,11 +1,30 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Application manifest for bind.
"""
from django.utils.translation import gettext_lazy as _
from plinth.clients import store_url
clients = [{
'name':
_('Shaarlier'),
'platforms': [{
'type': 'store',
'os': 'android',
'store_name': 'google-play',
'url': store_url('google-play', 'com.dimtion.shaarlier'),
}, {
'type': 'store',
'os': 'android',
'store_name': 'f-droid',
'url': store_url('f-droid', 'com.dimtion.shaarlier'),
}]
}, {
'name': _('Shaarli'),
'platforms': [{
'type': 'web',
'url': '/shaarli'
'url': '/shaarli/'
}]
}]