mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +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>
14 lines
269 B
Python
14 lines
269 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the RSS-Bridge module.
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from plinth.views import AppView
|
|
|
|
urlpatterns = [
|
|
re_path(r'^apps/rssbridge/$', AppView.as_view(app_id='rssbridge'),
|
|
name='index'),
|
|
]
|