mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
[sunil: Update description for simplicity, group info] [sunil: Indentation fixes] [sunil: End all URLs with a slash] [sunil: Update frontpage shortcut to be a simple one] [sunil: Enable single-sign-on for main interface only] [sunil: In copyright file, merge with public-domain section] [sunil: Simplify and vectorify the icon] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
18 lines
286 B
Python
18 lines
286 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
"""
|
|
Application manifest for RSS-Bridge.
|
|
"""
|
|
|
|
clients = [{
|
|
'name': _('RSS-Bridge'),
|
|
'platforms': [{
|
|
'type': 'web',
|
|
'url': '/rss-bridge/'
|
|
}]
|
|
}]
|
|
|
|
backup = {}
|